diff --git a/README.md b/README.md
index d857043..d448faa 100644
--- a/README.md
+++ b/README.md
@@ -13,8 +13,8 @@ Retrieve User Information, Trophies, Game and Store data from the PlayStation Ne
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/MIT)
-
-\n
+
+\n
## How to install
@@ -60,6 +60,7 @@ psnawp = PSNAWP("<64 character npsso code>")
client = psnawp.me()
print(f"Online ID: {client.online_id}")
print(f"Account ID: {client.account_id}")
+print(f"Region: {client.get_region()}")
print(f"Profile: {client.get_profile_legacy()} \n")
# Your Registered Devices
@@ -111,6 +112,7 @@ for title in titles_with_stats:
example_user_1 = psnawp.user(online_id="VaultTec-Co") # Get a PSN player by their Online ID
print(f"User 1 Online ID: {example_user_1.online_id}")
print(f"User 1 Account ID: {example_user_1.account_id}")
+print(f"User 1 Region: {example_user_1.get_region()}")
print(example_user_1.profile())
print(example_user_1.prev_online_id)
diff --git a/pyproject.toml b/pyproject.toml
index ad69c3c..8fbc247 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -24,31 +24,32 @@ classifiers = [
packages = [{ include = "psnawp_api", from = "src" }]
[tool.poetry.dependencies]
-python = "^3.9"
-attrs = "23.2.0"
+python = "^3.10"
+attrs = "24.2.0"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
requests-ratelimiter = "^0.7.0"
-pyright = "^1.1.370"
+pycountry = "^24.6.1"
[tool.poetry.group.typing.dependencies]
-mypy = "^1.10.1"
+mypy = "^1.14.1"
+pyright = "^1.1.391"
types-requests = "^2.31.0.6"
[tool.poetry.group.linting.dependencies]
-ruff = "^0.5.1"
-pre-commit = "^3.7.1"
+ruff = "^0.9.1"
+pre-commit = "^4.0.0"
[tool.poetry.group.docs.dependencies]
-sphinx = "^7.3.7"
-furo = "^2024.04.27"
-myst-parser = { extras = ["linkify"], version = "^3.0.1" }
+sphinx = "^8.1.3"
+furo = "^2024.8.6"
+myst-parser = { extras = ["linkify"], version = "^4.0.0" }
[tool.poetry.group.tests.dependencies]
pytest = "^8.2.2"
python-dotenv = "^1.0.1"
-vcrpy = "^6.0.1"
-pytest-cov = "^5.0.0"
+vcrpy = "^7.0.0"
+pytest-cov = "^6.0.0"
pytest-vcr = "^1.0.2"
jsonschema = "^4.23.0"
diff --git a/pytest.xml b/pytest.xml
index 7d4cc04..2707f9d 100644
--- a/pytest.xml
+++ b/pytest.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/psnawp_api/models/client.py b/src/psnawp_api/models/client.py
index 9c6fb23..fd8a70f 100644
--- a/src/psnawp_api/models/client.py
+++ b/src/psnawp_api/models/client.py
@@ -14,9 +14,11 @@
TrophyWithProgressIterator,
)
from psnawp_api.models.user import User
-from psnawp_api.utils import API_PATH, BASE_PATH
+from psnawp_api.utils import API_PATH, BASE_PATH, extract_region_from_npid
if TYPE_CHECKING:
+ from pycountry.db import Country
+
from psnawp_api.core import Authenticator
from psnawp_api.models.trophies import PlatformType, TrophyGroupsSummary, TrophyGroupSummary, TrophyGroupSummaryWithProgress
@@ -68,6 +70,25 @@ def account_id(self) -> str:
account_id: str = response["accountId"]
return account_id
+ def get_region(self) -> Optional[Country]:
+ """Gets the region of the client logged in the api.
+
+ :returns: Returns Country object from Pycountry for logged in user or None if not found.
+
+ .. code-block:: Python
+
+ client = psnawp.me()
+ print(client.get_region())
+
+ .. note::
+
+ See https://github.com/pycountry/pycountry for more info on Country object.
+
+ """
+ response = self.get_profile_legacy()
+ npid = response.get("profile", {}).get("npId", "")
+ return extract_region_from_npid(npid)
+
def get_profile_legacy(self) -> dict[str, Any]:
"""Gets the profile info from legacy api endpoint. Useful for legacy console (PS3, PS4) presence.
diff --git a/src/psnawp_api/models/trophies/trophy_group.py b/src/psnawp_api/models/trophies/trophy_group.py
index 1e9e6c2..b26ab98 100644
--- a/src/psnawp_api/models/trophies/trophy_group.py
+++ b/src/psnawp_api/models/trophies/trophy_group.py
@@ -125,10 +125,7 @@ def __init__(
def __str__(self) -> str:
return (
- f"TrophyGroupsSummary(Title: {self.trophy_title_name}, "
- f"Defined: {self.defined_trophies}, "
- f"Earned: {self.earned_trophies}, "
- f"Progress: {self.progress})"
+ f"TrophyGroupsSummary(Title: {self.trophy_title_name}, Defined: {self.defined_trophies}, Earned: {self.earned_trophies}, Progress: {self.progress})"
)
def __repr__(self) -> str:
diff --git a/src/psnawp_api/models/user.py b/src/psnawp_api/models/user.py
index 8d0f1e2..6881859 100644
--- a/src/psnawp_api/models/user.py
+++ b/src/psnawp_api/models/user.py
@@ -18,9 +18,11 @@
TrophyTitleIterator,
TrophyWithProgressIterator,
)
-from psnawp_api.utils import API_PATH, BASE_PATH
+from psnawp_api.utils import API_PATH, BASE_PATH, extract_region_from_npid
if TYPE_CHECKING:
+ from pycountry.db import Country
+
from psnawp_api.core import Authenticator
from psnawp_api.models.trophies import PlatformType, TrophyGroupsSummary, TrophyGroupSummary, TrophyGroupSummaryWithProgress
@@ -111,6 +113,54 @@ def profile(self) -> dict[str, Any]:
response: dict[str, Any] = self.authenticator.get(url=f"{BASE_PATH['profile_uri']}{API_PATH['profiles'].format(account_id=self.account_id)}").json()
return response
+ def get_region(self) -> Optional[Country]:
+ """Gets the region of the user.
+
+ :returns: Returns Country object from Pycountry of the User or None if not found.
+
+ .. code-block:: Python
+
+ user_example = psnawp.user(online_id="VaultTec_Trading")
+ print(user_example.get_region())
+
+ .. note::
+
+ See https://github.com/pycountry/pycountry for more info on Country object.
+
+ """
+ response = self.get_profile_legacy()
+ npid = response.get("profile", {}).get("npId", "")
+ return extract_region_from_npid(npid)
+
+ def get_profile_legacy(self) -> dict[str, Any]:
+ """Gets the user profile info from legacy api endpoint. Useful for legacy console (PS3, PS4) presence.
+
+ :returns: A dict containing info similar to what is shown below:
+
+ .. literalinclude:: examples/client/get_profile_legacy.json
+ :language: json
+
+
+ .. code-block:: Python
+
+ user_example = psnawp.user(online_id="VaultTec_Trading")
+ print(user_example.get_profile_legacy())
+
+ """
+ params = {
+ "fields": "npId,onlineId,accountId,avatarUrls,plus,aboutMe,languagesUsed,trophySummary(@default,level,progress,earnedTrophies),"
+ "isOfficiallyVerified,personalDetail(@default,profilePictureUrls),personalDetailSharing,personalDetailSharingRequestMessageFlag,"
+ "primaryOnlineStatus,presences(@default,@titleInfo,platform,lastOnlineDate,hasBroadcastData),requestMessageFlag,blocking,friendRelation,"
+ "following,consoleAvailability"
+ }
+
+ response: dict[str, Any] = self.authenticator.get(
+ url=f"{BASE_PATH['legacy_profile_uri']}{API_PATH['legacy_profile'].format(online_id=self.online_id)}",
+ params=params,
+ ).json()
+
+ return response
+
def get_presence(self) -> dict[str, Any]:
"""Gets the presences of a user. If the profile is private
diff --git a/src/psnawp_api/utils/__init__.py b/src/psnawp_api/utils/__init__.py
index 16f4671..f3fd681 100644
--- a/src/psnawp_api/utils/__init__.py
+++ b/src/psnawp_api/utils/__init__.py
@@ -1,4 +1,4 @@
from psnawp_api.utils.endpoints import API_PATH, BASE_PATH
-from psnawp_api.utils.misc import iso_format_to_datetime
+from psnawp_api.utils.misc import extract_region_from_npid, iso_format_to_datetime
-__all__ = ["BASE_PATH", "API_PATH", "iso_format_to_datetime"]
+__all__ = ["BASE_PATH", "API_PATH", "iso_format_to_datetime", "extract_region_from_npid"]
diff --git a/src/psnawp_api/utils/misc.py b/src/psnawp_api/utils/misc.py
index ab058b8..e35719b 100644
--- a/src/psnawp_api/utils/misc.py
+++ b/src/psnawp_api/utils/misc.py
@@ -1,8 +1,30 @@
from __future__ import annotations
+import base64
+import binascii
from datetime import datetime
-from typing import Optional
+from typing import TYPE_CHECKING, Optional, cast
+
+from pycountry import countries
+
+if TYPE_CHECKING:
+ from pycountry.db import Country
def iso_format_to_datetime(iso_format: Optional[str]) -> Optional[datetime]:
return datetime.fromisoformat(iso_format.replace("Z", "+00:00")) if iso_format is not None else None
+
+
+def extract_region_from_npid(npid: str) -> Optional[Country]:
+ try:
+ decoded_npid = base64.b64decode(npid).decode("utf-8")
+ except (binascii.Error, UnicodeDecodeError):
+ return None
+
+ # Assuming a valid decoded npid format (e.g. VaultTec-Co@b7.us), extract the region (e.g. "US")
+ if "@" in decoded_npid and "." in decoded_npid:
+ region_candidate = decoded_npid.split(".")[-1]
+ if len(region_candidate) == 2 and region_candidate.isalpha():
+ return cast(Country, countries.get(alpha_2=region_candidate))
+
+ return None
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json
index 1cdc142..31e9ba7 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json
@@ -51,51 +51,51 @@
"message": "Moved Temporarily"
},
"headers": {
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.ns1bmF&cid=00000000-0000-0000-0000-b025aa3b2674"
+ "Content-Length": [
+ "0"
],
- "Server": [
- "nginx"
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
],
- "X-Psn-Request-Id": [
- "4ca04aa97a71c702ead682c550913f82"
+ "Set-Cookie": "REDACTED",
+ "X-XSS-Protection": [
+ "1; mode=block"
],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "X-RequestId": [
+ "4724923bbfada17474d596a8fc91ca04"
],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.KDOoCx&cid=00000000-0000-0000-0000-b025aa3b2674"
],
"X-Frame-Options": [
"DENY"
],
- "Connection": [
- "keep-alive"
- ],
- "X-RequestId": [
- "4ca04aa97a71c702ead682c550913f82"
+ "X-Psn-Request-Id": [
+ "4724923bbfada17474d596a8fc91ca04"
],
- "Content-Length": [
+ "Expires": [
"0"
],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Expires": [
- "0"
- ],
- "X-XSS-Protection": [
- "1; mode=block"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:07 GMT"
+ "Server": [
+ "nginx"
],
- "X-CorrelationId": [
+ "X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Connection": [
+ "keep-alive"
]
},
"body": {
@@ -144,40 +144,40 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "nginx"
- ],
- "X-Psn-Request-Id": [
- "37c9adb078ce335ce48e03fb211f1b9d"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Content-Length": [
+ "4010"
],
"Cache-Control": [
"no-store"
],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
"X-RequestId": [
- "37c9adb078ce335ce48e03fb211f1b9d"
+ "f80edba9978ab362859bc8bb2877eb66"
],
- "Content-Length": [
- "3998"
+ "X-Psn-Request-Id": [
+ "f80edba9978ab362859bc8bb2877eb66"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:07 GMT"
+ "Server": [
+ "nginx"
],
- "X-CorrelationId": [
+ "X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
- ]
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -216,33 +216,33 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Content-Length": [
+ "35"
],
- "Server": [
- "nginx"
+ "Set-Cookie": "REDACTED",
+ "X-RequestId": [
+ "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf"
],
"X-Psn-Request-Id": [
- "a05bbf79-b5ed-400f-89bd-1c7b29a681d3"
+ "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf"
],
"X-Psn-Correlation-Id": [
- "a05bbf79-b5ed-400f-89bd-1c7b29a681d3"
+ "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf"
],
- "X-RequestId": [
- "a05bbf79-b5ed-400f-89bd-1c7b29a681d3"
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
],
- "Content-Length": [
- "35"
+ "X-CorrelationId": [
+ "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf"
+ ],
+ "Server": [
+ "nginx"
],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:07 GMT"
- ],
- "X-CorrelationId": [
- "a05bbf79-b5ed-400f-89bd-1c7b29a681d3"
+ "Connection": [
+ "keep-alive"
]
},
"body": {
@@ -282,42 +282,42 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
+ "Content-Length": [
+ "1619"
],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "1619"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Set-Cookie": "REDACTED",
+ "X-Psn-Track-Id": [
+ "0547992944457511517"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
+ ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
],
+ "Server": [
+ "Apache"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:08 GMT"
- ],
- "X-Psn-Track-Id": [
- "0469749089987140719"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Connection": [
+ "keep-alive"
]
},
"body": {
@@ -363,40 +363,40 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "nginx"
- ],
- "X-Psn-Request-Id": [
- "14a781c7ef9921003ea54493bc19202d"
- ],
- "X-Psn-Correlation-Id": [
- "dd899d2d-465c-4a47-b8dd-172fce3f3b2c"
+ "Content-Length": [
+ "4010"
],
"Cache-Control": [
"no-store"
],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
"X-RequestId": [
- "14a781c7ef9921003ea54493bc19202d"
+ "6a0eb8ddf2d32b17cffbacc09015996f"
],
- "Content-Length": [
- "3998"
+ "X-Psn-Request-Id": [
+ "6a0eb8ddf2d32b17cffbacc09015996f"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "X-CorrelationId": [
+ "70e955fd-9a55-4759-a0d5-2b502150c2fd"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:08 GMT"
+ "Server": [
+ "nginx"
],
- "X-CorrelationId": [
- "dd899d2d-465c-4a47-b8dd-172fce3f3b2c"
- ]
+ "X-Psn-Correlation-Id": [
+ "70e955fd-9a55-4759-a0d5-2b502150c2fd"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -435,34 +435,34 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Content-Length": [
+ "35"
],
- "Server": [
- "nginx"
+ "X-RequestId": [
+ "1573f26f-0c80-4302-99df-8e7af62012da"
],
"X-Psn-Request-Id": [
- "d7991f6a-de56-45f9-a6d3-2c911e1521bc"
+ "1573f26f-0c80-4302-99df-8e7af62012da"
],
"X-Psn-Correlation-Id": [
- "d7991f6a-de56-45f9-a6d3-2c911e1521bc"
+ "1573f26f-0c80-4302-99df-8e7af62012da"
],
- "X-RequestId": [
- "d7991f6a-de56-45f9-a6d3-2c911e1521bc"
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:31 GMT"
],
- "Content-Length": [
- "35"
+ "X-CorrelationId": [
+ "1573f26f-0c80-4302-99df-8e7af62012da"
+ ],
+ "Server": [
+ "nginx"
],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:08 GMT"
+ "Connection": [
+ "keep-alive"
],
- "X-CorrelationId": [
- "d7991f6a-de56-45f9-a6d3-2c911e1521bc"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"accountId\": \"2721516955383551246\"}"
@@ -501,42 +501,42 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
+ "Content-Length": [
+ "1619"
],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "1619"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Set-Cookie": "REDACTED",
+ "X-Psn-Track-Id": [
+ "0270342875014849874"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:32 GMT"
+ ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
],
+ "Server": [
+ "Apache"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:08 GMT"
- ],
- "X-Psn-Track-Id": [
- "0179603291468392870"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Connection": [
+ "keep-alive"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json
index 668d3a3..58ca3ac 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json
@@ -51,38 +51,26 @@
"message": "Moved Temporarily"
},
"headers": {
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.VWs9A0&cid=00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Server": [
- "nginx"
- ],
- "X-Psn-Request-Id": [
- "b060c86f69f98ece2f35a7d8e16403b4"
- ],
"X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "X-Frame-Options": [
- "DENY"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"Connection": [
"keep-alive"
],
- "X-RequestId": [
- "b060c86f69f98ece2f35a7d8e16403b4"
+ "Server": [
+ "nginx"
+ ],
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
],
"Content-Length": [
"0"
],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.p9OxOV&cid=00000000-0000-0000-0000-b025aa3b2674"
],
"Expires": [
"0"
@@ -90,12 +78,24 @@
"X-XSS-Protection": [
"1; mode=block"
],
- "Set-Cookie": "REDACTED",
+ "X-Frame-Options": [
+ "DENY"
+ ],
"Date": [
- "Sun, 16 Jun 2024 22:59:06 GMT"
+ "Sat, 11 Jan 2025 22:11:23 GMT"
],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Set-Cookie": "REDACTED",
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "X-RequestId": [
+ "98f6739013397648b8a2ddc813a0cdb9"
+ ],
+ "X-Psn-Request-Id": [
+ "98f6739013397648b8a2ddc813a0cdb9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"body": {
@@ -144,40 +144,40 @@
"message": "OK"
},
"headers": {
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "bb809c11f41b6cae3c337edd55cc2347"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
"Cache-Control": [
"no-store"
],
- "X-RequestId": [
- "bb809c11f41b6cae3c337edd55cc2347"
+ "Content-Type": [
+ "application/json;charset=UTF-8"
],
"Content-Length": [
- "3998"
+ "4010"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:23 GMT"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "X-RequestId": [
+ "1dcd89824dadf09b2d530b8dee4ec8a7"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:06 GMT"
+ "X-Psn-Request-Id": [
+ "1dcd89824dadf09b2d530b8dee4ec8a7"
],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ]
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -216,33 +216,33 @@
"message": "OK"
},
"headers": {
+ "X-Psn-Correlation-Id": [
+ "f7ac0e67-9f25-4b93-be01-a279813533bc"
+ ],
+ "X-CorrelationId": [
+ "f7ac0e67-9f25-4b93-be01-a279813533bc"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "aba2188c-a783-474a-94aa-90cba67b8596"
- ],
- "X-Psn-Correlation-Id": [
- "aba2188c-a783-474a-94aa-90cba67b8596"
- ],
- "X-RequestId": [
- "aba2188c-a783-474a-94aa-90cba67b8596"
+ "Content-Type": [
+ "application/json"
],
"Content-Length": [
"35"
],
- "Content-Type": [
- "application/json"
- ],
"Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:06 GMT"
+ "Sat, 11 Jan 2025 22:11:23 GMT"
],
- "X-CorrelationId": [
- "aba2188c-a783-474a-94aa-90cba67b8596"
+ "X-RequestId": [
+ "f7ac0e67-9f25-4b93-be01-a279813533bc"
+ ],
+ "X-Psn-Request-Id": [
+ "f7ac0e67-9f25-4b93-be01-a279813533bc"
]
},
"body": {
@@ -288,33 +288,33 @@
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
+ "Content-Type": [
+ "application/json"
],
"Content-Length": [
"1619"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Set-Cookie": "REDACTED",
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:23 GMT"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
+ "X-Psn-Track-Id": [
+ "0902497656187215888"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:07 GMT"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "X-Psn-Track-Id": [
- "0392888454830811565"
+ "Cache-Control": [
+ "private"
],
"Access-Control-Allow-Origin": [
"*"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json
index 947ff81..ba977c6 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json
@@ -51,51 +51,51 @@
"message": "Moved Temporarily"
},
"headers": {
- "Location": [
- "https://my.account.sony.com/sonyacct/signin/?access_type=offline&cid=00000000-0000-0000-0000-b025aa3b2674&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&PlatformPrivacyWs1=minimal&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr&auth_ver=v3&error=login_required&error_code=4165&error_description=User+is+not+authenticated&no_captcha=true&cid=00000000-0000-0000-0000-b025aa3b2674"
+ "Content-Length": [
+ "0"
],
- "Server": [
- "nginx"
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
],
- "X-Psn-Request-Id": [
- "a8f4f977efb634ef8b8bfcff83160069"
+ "Set-Cookie": "REDACTED",
+ "X-XSS-Protection": [
+ "1; mode=block"
],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "X-RequestId": [
+ "b3e613207ee0ca325327ed990bb9a6f9"
],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
+ "Location": [
+ "https://my.account.sony.com/sonyacct/signin/?access_type=offline&cid=00000000-0000-0000-0000-b025aa3b2674&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&PlatformPrivacyWs1=minimal&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr&auth_ver=v3&error=login_required&error_code=4165&error_description=User+is+not+authenticated&no_captcha=true&cid=00000000-0000-0000-0000-b025aa3b2674"
],
"X-Frame-Options": [
"DENY"
],
- "Connection": [
- "keep-alive"
- ],
- "X-RequestId": [
- "a8f4f977efb634ef8b8bfcff83160069"
+ "X-Psn-Request-Id": [
+ "b3e613207ee0ca325327ed990bb9a6f9"
],
- "Content-Length": [
+ "Expires": [
"0"
],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
+ "Date": [
+ "Sat, 11 Jan 2025 22:11:32 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Expires": [
- "0"
- ],
- "X-XSS-Protection": [
- "1; mode=block"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:09 GMT"
+ "Server": [
+ "nginx"
],
- "X-CorrelationId": [
+ "X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Connection": [
+ "keep-alive"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json
index 9a15db9..1e8a8a3 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "X-RequestId": [
+ "5e5f12c2-5b8f-49bb-b187-1f38e2464657"
+ ],
+ "X-CorrelationId": [
+ "5e5f12c2-5b8f-49bb-b187-1f38e2464657"
+ ],
+ "X-Psn-Correlation-Id": [
+ "5e5f12c2-5b8f-49bb-b187-1f38e2464657"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "8e3d89b6-f2e2-407a-a85e-2fb82da81f85"
- ],
- "X-Psn-Correlation-Id": [
- "8e3d89b6-f2e2-407a-a85e-2fb82da81f85"
- ],
- "X-RequestId": [
- "8e3d89b6-f2e2-407a-a85e-2fb82da81f85"
- ],
"Content-Length": [
"35"
],
+ "X-Psn-Request-Id": [
+ "5e5f12c2-5b8f-49bb-b187-1f38e2464657"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:11 GMT"
+ "Sat, 11 Jan 2025 22:44:25 GMT"
],
- "X-CorrelationId": [
- "8e3d89b6-f2e2-407a-a85e-2fb82da81f85"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"accountId\": \"2721516955383551246\"}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json
index 6913607..1ddf473 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "X-RequestId": [
+ "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b"
+ ],
+ "X-CorrelationId": [
+ "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b"
+ ],
+ "X-Psn-Correlation-Id": [
+ "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "7f488567-6474-46cf-8cf3-3544a695b8c7"
- ],
- "X-Psn-Correlation-Id": [
- "7f488567-6474-46cf-8cf3-3544a695b8c7"
- ],
- "X-RequestId": [
- "7f488567-6474-46cf-8cf3-3544a695b8c7"
- ],
"Content-Length": [
"35"
],
+ "X-Psn-Request-Id": [
+ "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:10 GMT"
+ "Sat, 11 Jan 2025 22:44:24 GMT"
],
- "X-CorrelationId": [
- "7f488567-6474-46cf-8cf3-3544a695b8c7"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"accountId\": \"2721516955383551246\"}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json
index d3e165a..70c415f 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json
@@ -33,42 +33,42 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"15"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Psn-Track-Id": [
+ "0657437201593330881"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:12 GMT"
+ "Content-Type": [
+ "application/json"
],
- "X-Psn-Track-Id": [
- "0288667036734156357"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:28 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json
index f421e2f..33e34e4 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json
@@ -33,42 +33,42 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"16"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Psn-Track-Id": [
+ "0409231268677099405"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:13 GMT"
+ "Content-Type": [
+ "application/json"
],
- "X-Psn-Track-Id": [
- "0410716141072695079"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:28 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json
index 7cefb88..1884d38 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json
@@ -51,51 +51,51 @@
"message": "Moved Temporarily"
},
"headers": {
- "X-Psn-Request-Id": [
- "3355edf3af795536bb10a43b906dfc26"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Set-Cookie": "REDACTED",
+ "X-RequestId": [
+ "67c8f28ac08da44538f6feeb2b877286"
],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Expires": [
+ "0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.LC8AsY&cid=00000000-0000-0000-0000-b025aa3b2674"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:35 GMT"
],
"X-XSS-Protection": [
"1; mode=block"
],
- "Expires": [
+ "Connection": [
+ "keep-alive"
+ ],
+ "Content-Length": [
"0"
],
- "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=31536000 ; includeSubDomains"
],
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "nginx"
- ],
"X-Frame-Options": [
"DENY"
],
- "X-RequestId": [
- "3355edf3af795536bb10a43b906dfc26"
- ],
- "Date": [
- "Sat, 13 Jul 2024 08:03:09 GMT"
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.QnkWMv&cid=00000000-0000-0000-0000-b025aa3b2674"
],
"Cache-Control": [
"no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-Psn-Request-Id": [
+ "67c8f28ac08da44538f6feeb2b877286"
]
},
"body": {
@@ -144,40 +144,40 @@
"message": "OK"
},
"headers": {
- "X-Psn-Request-Id": [
- "2476b2164df1202303c0375084fa71d2"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "X-RequestId": [
+ "b9c3d23e4cbc9d2c7a39361b3cb5de70"
],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Content-Type": [
+ "application/json;charset=UTF-8"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "3998"
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:35 GMT"
],
- "Set-Cookie": "REDACTED",
"Connection": [
"keep-alive"
],
- "Server": [
- "nginx"
+ "Content-Length": [
+ "4010"
],
- "X-RequestId": [
- "2476b2164df1202303c0375084fa71d2"
+ "Cache-Control": [
+ "no-store"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Date": [
- "Sat, 13 Jul 2024 08:03:09 GMT"
+ "Server": [
+ "nginx"
],
- "Cache-Control": [
- "no-store"
- ]
+ "X-Psn-Request-Id": [
+ "b9c3d23e4cbc9d2c7a39361b3cb5de70"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -216,46 +216,46 @@
"message": "OK"
},
"headers": {
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "214"
- ],
"Set-Cookie": "REDACTED",
- "X-Psn-Track-Id": [
- "0198146331384647990"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"Access-Control-Allow-Origin": [
"*"
],
- "Server": [
- "Apache"
- ],
- "Connection": [
- "keep-alive"
- ],
"Content-Type": [
"application/json"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Date": [
- "Sat, 13 Jul 2024 08:03:10 GMT"
+ "Sun, 12 Jan 2025 00:15:35 GMT"
],
- "Cache-Control": [
- "private"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Content-Length": [
+ "214"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
+ "X-Psn-Track-Id": [
+ "0096614988585646235"
+ ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
+ ],
+ "Cache-Control": [
+ "private"
+ ],
+ "Server": [
+ "Apache"
]
},
"body": {
- "string": "{\"receivedRequests\": [{\"accountId\": \"2066273503397112667\", \"relation\": \"requested\", \"personalDetailSharing\": \"none\", \"acceptSharingPersonalDetailFlag\": false, \"requestedDate\": \"2024-07-13T07:48:50.474Z\"}], \"totalItemCount\": 1}"
+ "string": "{\"receivedRequests\": [{\"accountId\": \"2066273503397112667\", \"relation\": \"requested\", \"personalDetailSharing\": \"none\", \"acceptSharingPersonalDetailFlag\": false, \"requestedDate\": \"2025-01-12T00:14:50.983Z\"}], \"totalItemCount\": 1}"
}
}
},
@@ -291,42 +291,42 @@
"message": "OK"
},
"headers": {
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "533"
- ],
"Set-Cookie": "REDACTED",
- "X-Psn-Track-Id": [
- "0451184418609258573"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"Access-Control-Allow-Origin": [
"*"
],
- "Server": [
- "Apache"
- ],
- "Connection": [
- "keep-alive"
- ],
"Content-Type": [
"application/json"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Date": [
- "Sat, 13 Jul 2024 08:03:10 GMT"
+ "Sun, 12 Jan 2025 00:15:36 GMT"
],
- "Cache-Control": [
- "private"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Content-Length": [
+ "533"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
+ "X-Psn-Track-Id": [
+ "0324172177476591420"
+ ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
+ ],
+ "Cache-Control": [
+ "private"
+ ],
+ "Server": [
+ "Apache"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json
index dba1d5d..5cea9e7 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json
@@ -4,7 +4,7 @@
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/me/friends?limit=1000",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
"body": null,
"headers": {
"User-Agent": [
@@ -24,62 +24,170 @@
],
"Country": [
"US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
]
}
},
"response": {
"status": {
- "code": 200,
- "message": "OK"
+ "code": 302,
+ "message": "Moved Temporarily"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Set-Cookie": "REDACTED",
+ "X-XSS-Protection": [
+ "1; mode=block"
],
"Server": [
- "Apache"
+ "nginx"
],
- "Cache-Control": [
- "private"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"Content-Length": [
- "97"
+ "0"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "X-RequestId": [
+ "9da0cea5ce4efa56eae52535d7339105"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "Expires": [
+ "0"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:39 GMT"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.PGfV9C&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Psn-Request-Id": [
+ "9da0cea5ce4efa56eae52535d7339105"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Frame-Options": [
+ "DENY"
+ ]
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
],
"Content-Type": [
- "application/json"
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Length": [
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-RequestId": [
+ "8259cb6117551ea0a0557ba6091a36a7"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Content-Length": [
+ "4010"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:11 GMT"
+ "Sun, 12 Jan 2025 00:15:39 GMT"
],
- "X-Psn-Track-Id": [
- "0446823893078043723"
+ "Connection": [
+ "keep-alive"
],
- "Access-Control-Allow-Origin": [
- "*"
- ]
+ "X-Psn-Request-Id": [
+ "8259cb6117551ea0a0557ba6091a36a7"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"friends\": [\"940512162723934331\", \"4273405838384737823\", \"8520698476712646544\"], \"totalItemCount\": 3}"
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
}
}
},
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/940512162723934331/profiles",
+ "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/me/friends?limit=1000",
"body": null,
"headers": {
"User-Agent": [
@@ -108,53 +216,53 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Set-Cookie": "REDACTED",
+ "Content-Type": [
+ "application/json"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"Content-Length": [
- "694"
+ "97"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Cache-Control": [
+ "private"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:39 GMT"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:11 GMT"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
"X-Psn-Track-Id": [
- "0492931305290160482"
+ "0984326994671738317"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"body": {
- "string": "{\"onlineId\": \"lucidityzen_\", \"aboutMe\": \"u butt\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_m.png\"}], \"languages\": [\"ru-RU\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}"
+ "string": "{\"friends\": [\"5361973517281706660\", \"940512162723934331\", \"4273405838384737823\"], \"totalItemCount\": 3}"
}
}
},
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/4273405838384737823/profiles",
+ "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/5361973517281706660/profiles",
"body": null,
"headers": {
"User-Agent": [
@@ -183,53 +291,53 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Set-Cookie": "REDACTED",
+ "Content-Type": [
+ "application/json"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"Content-Length": [
- "791"
+ "528"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Cache-Control": [
+ "private"
],
"Access-Control-Allow-Headers": [
"Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:40 GMT"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:12 GMT"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
"X-Psn-Track-Id": [
- "0690876802466789820"
+ "0779528439996479361"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"body": {
- "string": "{\"onlineId\": \"DaUglyDucklin\", \"aboutMe\": \"Go get bent. Ya'll are planks. Casablumkin. G.G. Switching to PC, Join me friends, No one left behind.\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}"
+ "string": "{\"onlineId\": \"Rodders1013\", \"aboutMe\": \"F83C\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/SCEI/I0057_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/SCEI/I0057_XL.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/SCEI/I0057.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/SCEI/I0057_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}"
}
}
},
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/8520698476712646544/profiles",
+ "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/940512162723934331/profiles",
"body": null,
"headers": {
"User-Agent": [
@@ -258,46 +366,121 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Set-Cookie": "REDACTED",
+ "Content-Type": [
+ "application/json"
],
"Server": [
"Apache"
],
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
+ ],
+ "Content-Length": [
+ "696"
+ ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "606"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:40 GMT"
+ ],
+ "Connection": [
+ "keep-alive"
],
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "X-Psn-Track-Id": [
+ "0963460106131144274"
],
"X-Content-Type-Options": [
"nosniff"
+ ]
+ },
+ "body": {
+ "string": "{\"onlineId\": \"Lucidityzen_v2\", \"aboutMe\": \"u butt\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_m.png\"}], \"languages\": [\"ru-RU\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/4273405838384737823/profiles",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:12 GMT"
+ "Server": [
+ "Apache"
],
- "X-Psn-Track-Id": [
- "0552497156658770679"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
+ ],
+ "Content-Length": [
+ "791"
+ ],
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:40 GMT"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0352971489391548904"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"body": {
- "string": "{\"onlineId\": \"VaultTec_Trading\", \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/default/DefaultAvatar_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/default/Defaultavatar_xl.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/default/DefaultAvatar_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": false, \"isOfficiallyVerified\": false, \"isMe\": false}"
+ "string": "{\"onlineId\": \"DaUglyDucklin\", \"aboutMe\": \"Go get bent. Ya'll are planks. Casablumkin. G.G. Switching to PC, Join me friends, No one left behind.\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json
index 0273f64..49ee5ed 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json
@@ -33,46 +33,46 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ ],
+ "Vary": [
+ "accept-encoding"
],
"content-length": [
- "2283"
+ "2693"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Cache-Control": [
+ "private"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:12 GMT"
- ],
- "Set-Cookie": "REDACTED",
- "Access-Control-Allow-Origin": [
- "*"
+ "Sat, 11 Jan 2025 22:44:27 GMT"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}, {\"groupId\": \"~25C4C5406FD6D50E.7AF3224877607CC0\", \"groupType\": 0, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"8e69128e4611fa8160de2aa33bf229ac8a969c5e-115\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}, {\"groupId\": \"18751a7d029fd0ab51664bbdd9ac700a6ce92698-637\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"d8397c573e4c1bf5f32e762ee7446ae4a2731957-983\", \"groupType\": 1, \"members\": [{\"accountId\": \"2338752500650724106\", \"onlineId\": \"Salvadxsz\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"6cb22f41de0c4d73def6fbceb9d920e24111cc62-245\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"83108bbe436a2b498ff8bd8a859ec928e4879ba6-288\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"5b9ef4dac84464a3c65a98efe9ad5763e5fea630-670\", \"groupType\": 1, \"members\": [{\"accountId\": \"3228711241517547934\", \"onlineId\": \"RealTrabstarbr\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"e46afaa722b17aff6f75e83cd30f3b0973c4fdb4-647\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"9111077425924553349\", \"onlineId\": \"buffk1\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"6bce2421cc43cf4a776116f17b366a97a8728cb3-892\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"4273044099593005394\", \"onlineId\": \"saeedg362\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}], \"previousOffset\": 0, \"nextOffset\": 10}"
+ "string": "{\"groups\": [{\"groupId\": \"2856b38831fdd4cba3ff343760d1a701f360f86f-70\", \"groupType\": 1, \"members\": [{\"accountId\": \"6297799822129715546\", \"onlineId\": \"MUKlMUKI_OYAZI\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"7b43a1ea61e913261fd78449d5eab93ec101d7f3-279\", \"groupType\": 1, \"members\": [{\"accountId\": \"6297799822129715546\", \"onlineId\": \"MUKlMUKI_OYAZI\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"9e3258536950c027f32d3b20dc10b3eca244d88d-284\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"4428016206697155847\", \"onlineId\": \"Yakzu101\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"f232f1be21a31541977ef736c4e76711679de591-759\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"4b219867f1ef2a5480b7f9d1c468569232377b73-86\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"0435454d4adfd49680f23af60319c8aef6f09004-267\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"f90b0e7dece84992e30f735ef7921dad380fa91b-828\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"bf6402381cf4937e3d215744f1904506bb5b2072-442\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"470517f0a2086540a235fc0e227efcc4d65819b3-796\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"92c805688cee7b10b4882c01aaf8c28c2b2b5944-529\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}], \"previousOffset\": 0, \"nextOffset\": 10}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json
index e48d1f6..f72963a 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "X-RequestId": [
+ "d64b3d4e-6976-4107-814a-fab23bbb01f6"
+ ],
+ "X-CorrelationId": [
+ "d64b3d4e-6976-4107-814a-fab23bbb01f6"
+ ],
+ "X-Psn-Correlation-Id": [
+ "d64b3d4e-6976-4107-814a-fab23bbb01f6"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "d4389c96-749c-479f-a1a6-7015204bb314"
- ],
- "X-Psn-Correlation-Id": [
- "d4389c96-749c-479f-a1a6-7015204bb314"
- ],
- "X-RequestId": [
- "d4389c96-749c-479f-a1a6-7015204bb314"
- ],
"Content-Length": [
"35"
],
+ "X-Psn-Request-Id": [
+ "d64b3d4e-6976-4107-814a-fab23bbb01f6"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:10 GMT"
+ "Sat, 11 Jan 2025 22:44:24 GMT"
],
- "X-CorrelationId": [
- "d4389c96-749c-479f-a1a6-7015204bb314"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"accountId\": \"2721516955383551246\"}"
@@ -99,42 +99,42 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"1619"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Psn-Track-Id": [
+ "0834433592898889875"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:10 GMT"
+ "Content-Type": [
+ "application/json"
],
- "X-Psn-Track-Id": [
- "0044977435577757654"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:25 GMT"
]
},
"body": {
@@ -180,32 +180,29 @@
"Server": [
"Apache"
],
- "Cache-Control": [
- "no-store"
- ],
- "content-length": [
+ "Content-Length": [
"1096"
],
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, OPTIONS"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Cache-Control": [
+ "no-store"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Content-Type": [
"application/json"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:11 GMT"
- ],
- "Access-Control-Allow-Origin": [
- "*"
+ "Sat, 11 Jan 2025 22:44:25 GMT"
],
"Set-Cookie": "REDACTED"
},
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json
new file mode 100644
index 0000000..3eca729
--- /dev/null
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json
@@ -0,0 +1,398 @@
+{
+ "version": 1,
+ "interactions": [
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 302,
+ "message": "Moved Temporarily"
+ },
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:56:38 GMT"
+ ],
+ "Set-Cookie": "REDACTED",
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "DENY"
+ ],
+ "Expires": [
+ "0"
+ ],
+ "X-Psn-Request-Id": [
+ "6efa0017ebf950ee915cde38c4482edd"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "X-XSS-Protection": [
+ "1; mode=block"
+ ],
+ "X-RequestId": [
+ "6efa0017ebf950ee915cde38c4482edd"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.6s8Ixt&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ]
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Length": [
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Length": [
+ "4010"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:56:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Psn-Request-Id": [
+ "df068bd650c9ad8832562c6575d6441e"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-RequestId": [
+ "df068bd650c9ad8832562c6575d6441e"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://dms.api.playstation.com/api/v1/devices/accounts/me",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Length": [
+ "35"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:56:39 GMT"
+ ],
+ "Set-Cookie": "REDACTED",
+ "Content-Type": [
+ "application/json"
+ ],
+ "X-Psn-Request-Id": [
+ "49778f41-5ff3-4287-b5ab-c0aae984bc64"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-Psn-Correlation-Id": [
+ "49778f41-5ff3-4287-b5ab-c0aae984bc64"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-RequestId": [
+ "49778f41-5ff3-4287-b5ab-c0aae984bc64"
+ ],
+ "X-CorrelationId": [
+ "49778f41-5ff3-4287-b5ab-c0aae984bc64"
+ ]
+ },
+ "body": {
+ "string": "{\"accountId\": \"2721516955383551246\"}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/2721516955383551246/profiles",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Length": [
+ "1619"
+ ],
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
+ ],
+ "X-Psn-Track-Id": [
+ "0245123396640090779"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:56:39 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Set-Cookie": "REDACTED",
+ "Content-Type": [
+ "application/json"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ ]
+ },
+ "body": {
+ "string": "{\"onlineId\": \"VaultTec-Co\", \"personalDetail\": {\"firstName\": \"VaultTec\", \"lastName\": \"BlacklistBot\", \"profilePictures\": [{\"size\": \"s\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=50&h=50&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"m\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=160&h=160&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"l\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=240&h=240&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"xl\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=440&h=440&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}]}, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/default/DefaultAvatar_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/default/Defaultavatar_xl.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/default/DefaultAvatar_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": false, \"isOfficiallyVerified\": false, \"isMe\": true}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec-Co/profile2?fields=npId%2ConlineId%2CaccountId%2CavatarUrls%2Cplus%2CaboutMe%2ClanguagesUsed%2CtrophySummary%28%40default%2Clevel%2Cprogress%2CearnedTrophies%29%2CisOfficiallyVerified%2CpersonalDetail%28%40default%2CprofilePictureUrls%29%2CpersonalDetailSharing%2CpersonalDetailSharingRequestMessageFlag%2CprimaryOnlineStatus%2Cpresences%28%40default%2C%40titleInfo%2Cplatform%2ClastOnlineDate%2ChasBroadcastData%29%2CrequestMessageFlag%2Cblocking%2CfriendRelation%2Cfollowing%2CconsoleAvailability",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Length": [
+ "1096"
+ ],
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, OPTIONS"
+ ],
+ "Date": [
+ "Sat, 11 Jan 2025 22:56:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"profile\": {\"onlineId\": \"VaultTec-Co\", \"accountId\": \"2721516955383551246\", \"npId\": \"VmF1bHRUZWMtQ29AYjcudXM=\", \"avatarUrls\": [{\"size\": \"l\", \"avatarUrl\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}], \"plus\": 0, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"languagesUsed\": [\"en\"], \"trophySummary\": {\"level\": 1, \"progress\": 0, \"earnedTrophies\": {\"platinum\": 0, \"gold\": 0, \"silver\": 0, \"bronze\": 0}}, \"isOfficiallyVerified\": false, \"personalDetail\": {\"firstName\": \"VaultTec\", \"lastName\": \"BlacklistBot\", \"profilePictureUrls\": [{\"size\": \"xl\", \"profilePictureUrl\": \"https://image.api.np.km.playstation.net/images/?format=png&w=440&h=440&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}]}, \"personalDetailSharing\": \"no\", \"personalDetailSharingRequestMessageFlag\": false, \"primaryOnlineStatus\": \"offline\", \"presences\": [{\"onlineStatus\": \"offline\", \"hasBroadcastData\": false}], \"friendRelation\": \"no\", \"requestMessageFlag\": false, \"blocking\": false, \"following\": false, \"consoleAvailability\": {\"availabilityStatus\": \"offline\"}}}"
+ }
+ }
+ }
+ ]
+}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json
index bc81e0d..f0ed7e6 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json
@@ -51,51 +51,51 @@
"message": "Moved Temporarily"
},
"headers": {
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.D62rAJ&cid=00000000-0000-0000-0000-b025aa3b2674"
+ "Expires": [
+ "0"
],
- "Server": [
- "nginx"
+ "X-RequestId": [
+ "df3b4d9ab302487fd516849745f8b053"
],
- "X-Psn-Request-Id": [
- "c38620f46ec395196d67196c31ec90ca"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "X-Frame-Options": [
- "DENY"
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
],
- "Connection": [
- "keep-alive"
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.sVjdzf&cid=00000000-0000-0000-0000-b025aa3b2674"
],
- "X-RequestId": [
- "c38620f46ec395196d67196c31ec90ca"
+ "Server": [
+ "nginx"
],
"Content-Length": [
"0"
],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
+ "X-XSS-Protection": [
+ "1; mode=block"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Expires": [
- "0"
+ "X-Frame-Options": [
+ "DENY"
],
- "X-XSS-Protection": [
- "1; mode=block"
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "Connection": [
+ "keep-alive"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:09 GMT"
+ "X-Psn-Request-Id": [
+ "df3b4d9ab302487fd516849745f8b053"
],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:23 GMT"
]
},
"body": {
@@ -144,40 +144,40 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "nginx"
+ "X-RequestId": [
+ "dd1c2798360969f37facee909a01d1cb"
],
- "X-Psn-Request-Id": [
- "90723bca6e9caab7730323b78b9f8dd5"
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
],
- "Cache-Control": [
- "no-store"
+ "Connection": [
+ "keep-alive"
],
- "X-RequestId": [
- "90723bca6e9caab7730323b78b9f8dd5"
+ "Server": [
+ "nginx"
],
"Content-Length": [
- "3998"
+ "4010"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "X-Psn-Request-Id": [
+ "dd1c2798360969f37facee909a01d1cb"
+ ],
"Content-Type": [
"application/json;charset=UTF-8"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:09 GMT"
+ "Sat, 11 Jan 2025 22:44:24 GMT"
],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -216,33 +216,33 @@
"message": "OK"
},
"headers": {
+ "X-RequestId": [
+ "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621"
+ ],
+ "X-CorrelationId": [
+ "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621"
+ ],
+ "X-Psn-Correlation-Id": [
+ "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "f097b104-5ee6-4c12-9899-bf420be514a5"
- ],
- "X-Psn-Correlation-Id": [
- "f097b104-5ee6-4c12-9899-bf420be514a5"
- ],
- "X-RequestId": [
- "f097b104-5ee6-4c12-9899-bf420be514a5"
- ],
"Content-Length": [
"35"
],
+ "Set-Cookie": "REDACTED",
+ "X-Psn-Request-Id": [
+ "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:09 GMT"
- ],
- "X-CorrelationId": [
- "f097b104-5ee6-4c12-9899-bf420be514a5"
+ "Sat, 11 Jan 2025 22:44:24 GMT"
]
},
"body": {
@@ -282,42 +282,42 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"1619"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Psn-Track-Id": [
+ "0025232563338823556"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:10 GMT"
+ "Content-Type": [
+ "application/json"
],
- "X-Psn-Track-Id": [
- "0415615454748285869"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:24 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json
index bfe6c71..1e058ce 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "X-RequestId": [
+ "bc05996e-abf0-48da-b3b8-a69edacf640b"
+ ],
+ "X-CorrelationId": [
+ "bc05996e-abf0-48da-b3b8-a69edacf640b"
+ ],
+ "X-Psn-Correlation-Id": [
+ "bc05996e-abf0-48da-b3b8-a69edacf640b"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"nginx"
],
- "X-Psn-Request-Id": [
- "01b3f347-f01d-4150-af0e-c0b558e615d8"
- ],
- "X-Psn-Correlation-Id": [
- "01b3f347-f01d-4150-af0e-c0b558e615d8"
- ],
- "X-RequestId": [
- "01b3f347-f01d-4150-af0e-c0b558e615d8"
- ],
"Content-Length": [
"35"
],
+ "X-Psn-Request-Id": [
+ "bc05996e-abf0-48da-b3b8-a69edacf640b"
+ ],
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:16 GMT"
+ "Sat, 11 Jan 2025 22:44:31 GMT"
],
- "X-CorrelationId": [
- "01b3f347-f01d-4150-af0e-c0b558e615d8"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"accountId\": \"2721516955383551246\"}"
@@ -99,42 +99,42 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"1619"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH"
+ "X-Psn-Track-Id": [
+ "0003757419266246082"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "private"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:16 GMT"
+ "Content-Type": [
+ "application/json"
],
- "X-Psn-Track-Id": [
- "0882513787830503784"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:31 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json
index 6dbf5f7..dda533a 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json
@@ -33,51 +33,51 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
- ],
- "Connection": [
- "keep-alive"
- ],
- "X-Psn-Request-Id": [
- "f14cda5a-83e8-1031-a823-7a30a0fa26bf"
+ "Expires": [
+ "Sat, 11 Jan 2025 22:44:31 GMT"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Max-Age": [
+ "3600"
],
"X-Psn-Correlation-Id": [
- "f14cda5a-83e8-1031-a822-7a30a0fa26bf"
+ "451c277e-94a9-1031-a66c-02955d6e0f38"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Connection": [
+ "keep-alive"
],
"Content-Length": [
"69"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Pragma": [
+ "no-cache"
],
- "Expires": [
- "Sun, 16 Jun 2024 22:59:15 GMT"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
],
- "Content-Type": [
- "application/json"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:15 GMT"
+ "X-Psn-Request-Id": [
+ "451c277e-94a9-1031-a66d-02955d6e0f38"
],
- "Access-Control-Max-Age": [
- "3600"
+ "Content-Type": [
+ "application/json"
],
"Access-Control-Allow-Headers": [
"Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
+ "Date": [
+ "Sat, 11 Jan 2025 22:44:31 GMT"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json
index 251f491..01e6b68 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json
@@ -33,33 +33,33 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"14154"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Vary": [
+ "Accept-Language"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "max-age=300"
],
"Set-Cookie": "REDACTED",
- "Vary": [
- "Accept-Language"
+ "Content-Type": [
+ "application/json"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:14 GMT"
+ "Sat, 11 Jan 2025 22:44:29 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json
index 448aaad..b407e3c 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json
@@ -33,33 +33,33 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"14154"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Vary": [
+ "Accept-Language"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "max-age=300"
],
"Set-Cookie": "REDACTED",
- "Vary": [
- "Accept-Language"
+ "Content-Type": [
+ "application/json"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:14 GMT"
+ "Sat, 11 Jan 2025 22:44:29 GMT"
]
},
"body": {
@@ -99,6 +99,9 @@
"message": "Not Found"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
@@ -108,22 +111,19 @@
"Content-Length": [
"110"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:14 GMT"
+ "Sat, 11 Jan 2025 22:44:30 GMT"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"0d6f6413-2c34-11ef-a647-f72a25fb9321\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
+ "string": "{\"error\": {\"referenceId\": \"9e70f41e-d06d-11ef-a1e3-7d65cde6bf8e\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json
index ffc5a46..62a08dc 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json
@@ -33,33 +33,33 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"1446"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Vary": [
+ "Accept-Language"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "max-age=300"
],
"Set-Cookie": "REDACTED",
- "Vary": [
- "Accept-Language"
+ "Content-Type": [
+ "application/json"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:15 GMT"
+ "Sat, 11 Jan 2025 22:44:30 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json
index 8c78c97..c4657ca 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json
@@ -33,33 +33,33 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"1446"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Vary": [
+ "Accept-Language"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Cache-Control": [
+ "max-age=300"
],
"Set-Cookie": "REDACTED",
- "Vary": [
- "Accept-Language"
+ "Content-Type": [
+ "application/json"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:15 GMT"
+ "Sat, 11 Jan 2025 22:44:30 GMT"
]
},
"body": {
@@ -99,6 +99,9 @@
"message": "Not Found"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
@@ -108,22 +111,19 @@
"Content-Length": [
"110"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:15 GMT"
+ "Sat, 11 Jan 2025 22:44:30 GMT"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"0de7a183-2c34-11ef-941f-bd3ca234bdb0\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
+ "string": "{\"error\": {\"referenceId\": \"9edab24b-d06d-11ef-89eb-cddb58447f12\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json
index d1d2ee1..b69cd50 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json
@@ -33,30 +33,30 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"203"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:13 GMT"
+ "Sat, 11 Jan 2025 22:44:28 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json
index f002171..e3c3b3c 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json
@@ -33,30 +33,30 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"38"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:13 GMT"
+ "Sat, 11 Jan 2025 22:44:29 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json
index 94c6482..58c5c0c 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json
@@ -33,30 +33,30 @@
"message": "OK"
},
"headers": {
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"59"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
"Date": [
- "Sun, 16 Jun 2024 22:59:13 GMT"
+ "Sat, 11 Jan 2025 22:44:29 GMT"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json
index cecfc1c..f8d8e74 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
- "891"
+ "912"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:52 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:16 GMT"
- ]
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
+ "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
}
}
},
@@ -96,34 +96,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
"Connection": [
"keep-alive"
],
- "Cache-Control": [
- "max-age=300"
- ],
"content-length": [
- "23208"
+ "23896"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:52 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "max-age=300"
],
"Vary": [
"Accept-Encoding"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:17 GMT"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "[{\"id\": 201930, \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"publisherName\": \"Rockstar Games\", \"media\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)
Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.
Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.
PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
Explore Los Santos and Blaine County in greater detail than ever before, now featuring:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
Plus, all-new enhancements to the ever-evolving world of GTA Online, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
30 network players
Remote Play supported
DUALSHOCK\\u00a04 vibration\"}], \"categorizedProducts\": [{\"topCategory\": \"ADD_ON\", \"ids\": [\"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"UP1004-CUSA00419_00-STARTERPACKOG001\", \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"UP1004-CUSA00419_00-GTAVCASHPACK000F\"]}, {\"topCategory\": \"GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOANDSPUPGRADE\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"UP1004-CUSA00419_00-PREMIUMPACKOG001\", \"UP1004-CUSA00419_00-PREMIUMPACKOGGW1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGME1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGWS1\", \"UP1004-CUSA00419_00-GTAVDIGITALDOWNL\"]}, {\"topCategory\": \"PVU_GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\"]}], \"titleIds\": [\"CUSA01436_00\", \"CUSA00880_00\", \"PPSA03421_00\", \"CUSA00419_00\", \"CUSA29862_00\", \"PPSA04263_00\", \"PPSA03420_00\", \"CUSA00411_00\", \"PPSA04265_00\", \"PPSA04264_00\", \"PPSA01721_00\"], \"country\": \"US\", \"language\": \"en\", \"type\": \"GAME\", \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Grand Theft Auto V (PlayStation\\u00ae5)\"}}, \"localizedDescriptions\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": [{\"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)
Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.
Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.
PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
Explore Los Santos and Blaine County in greater detail than ever before, now featuring:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
Plus, all-new enhancements to the ever-evolving world of GTA Online, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\", \"type\": \"LONG\"}]}}, \"localizedPublisherName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Rockstar Games\"}}, \"defaultProduct\": {\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"conceptId\": 201930, \"titleId\": \"PPSA03420_00\", \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"minimumAge\": 17, \"type\": \"GAME.BUNDLE\", \"storeClassification\": \"GAME\", \"storePrimaryClassification\": \"PREMIUM_GAME\", \"storeSubClassification\": \"BUNDLE\", \"storeDisplayClassification\": \"GAME_BUNDLE\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"topCategory\": \"GAME\", \"localizedTopCategory\": \"Game\", \"edition\": {\"name\": \"\", \"nameEn\": \"\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"ordering\": 2, \"type\": \"STANDARD\", \"features\": [\"Grand Theft Auto Online (PS5\\u2122)\"]}, \"isDefaultProduct\": true, \"isBestSelling\": false, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Includes Grand Theft Auto Online. GTAV: Story Mode can be purchased separately.
Continue your journey on PS5\\u2122 and transfer your GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience GTA Online, a dynamic and ever-evolving online universe for up to 30 players, where you can rise from street-level hustler to become a kingpin of your own criminal empire. PlayStation\\u00ae5 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and content released since launch, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
GTA Online for PlayStation\\u00ae5 also features all-new enhancements, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort. All this and more available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including nightclubs, arcades, penthouse parties, car meetups, and much more
Plus, all of the enhancements available on latest generation consoles bringing the world of Los Santos and Blaine County in greater detail than ever before, including:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, a frame rate of up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and much more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
Remote Play supported\"}, {\"type\": \"LEGAL\", \"desc\": \"
Online features require an account and are subject to terms of service and applicable privacy policy (playstationnetwork.com/terms-of-service & playstationnetwork.com/privacy-policy).
Software subject to license (us.playstation.com/softwarelicense).
\", \"metadata\": {\"downloadCloudFlag\": \"BOTH\", \"subType\": \"SCEA_TOS\"}}, {\"type\": \"LEGAL\", \"desc\": \"
You can download and play this content on the main PS5 console associated with your account (through the \\u201cConsole Sharing and Offline Play\\u201d setting) and on any other PS5 consoles when you login with your same account.
\", \"metadata\": {\"downloadCloudFlag\": \"DOWNLOAD\", \"subType\": \"SCEA_PS5_DRM\"}}, {\"type\": \"LEGAL\", \"desc\": \"
\\u00a9 2008\\u20132022. Rockstar Games, Rockstar North, Grand Theft Auto, GTA Five, Grand Theft Auto Online, and R* are marks/logos/copyrights of Take-Two Interactive. Uses Bink Video. \\u00a9 1997\\u20132022 by Epic Game Tools, Inc. This game includes Autodesk\\u00ae Scaleform\\u00ae software, \\u00a9 2013 Autodesk, Inc. All other marks and trademarks are properties of their respective owners. All rights reserved.
\"}], \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://image.api.playstation.com/grc/images/ratings/hd/esrb/m.png\", \"url4k\": \"https://image.api.playstation.com/grc/images/ratings/4k/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"media\": {\"videos\": [{\"id\": \"10427117\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202203/2115/5WZd4yvNgJ80hrysrckNR6Op.png\"], \"type\": \"PREVIEW\"}, {\"id\": \"10983933\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/91f5e632-13bc-4bea-9185-7311982a69c0-ltx8lse4/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/91f5e632-13bc-4bea-9185-7311982a69c0-ltx8lse4/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202403/1817/2f24bad0c576d8c21856c97c7d6e821aa52863ad45b9cd3f.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"N/A\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"NA\", \"type\": \"N/A\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"releaseDate\": \"2022-03-15T04:00:00Z\", \"localizedReleaseDate\": \"03/15/2022\", \"synonyms\": \"Rockstar Games,GTA Online,GTA V,GTA+,GTA Plus,Shark Cash Card,GTA$,Tarjeta Tibur\\u00f3n,CashCard,\\u0420\\u043e\\u043a\\u0441\\u0442\\u0430\\u0440 \\u0433\\u0435\\u0439\\u043c\\u0441\", \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"isInGameStore\": false, \"isPlaystationStore\": true, \"isPlatformRepresentative\": false, \"isConsumable\": false, \"leadPublisherName\": \"Rockstar Games\", \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}, {\"type\": \"STREAMING_SUPPORTED\", \"value\": \"ENABLED\", \"targetPlatforms\": [\"PS5\"]}], \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"revisionIds\": {}, \"targetPlatforms\": [\"PS5\"], \"skus\": [{\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"displayPrice\": \"$19.99\", \"price\": 1999, \"eligibilities\": [], \"type\": \"STANDARD\", \"name\": \"Game\", \"entitlements\": [{\"id\": \"UP1004-PPSA03420_00-GTAONLINEDIGITAL\", \"name\": \"Grand Theft Auto V\", \"applicationType\": \"STANDARD\", \"packageType\": \"PSGD\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"spokenLanguages\": [\"en\"], \"screenLanguages\": [\"es\", \"zh\", \"fr\", \"ru\", \"de\", \"pl\", \"it\", \"pt_BR\", \"en\", \"es_MX\", \"ko\", \"ch\"], \"packages\": [{\"playablePlatform\": \"PS5\", \"size\": 95945162752}], \"streamingSupported\": true, \"featureType\": \"FULL_GAME\"}, {\"id\": \"UP1004-PPSA03420_00-PSTRACK000000000\", \"name\": \"Grand Theft Auto Online (PS5\\u2122) Tracker\", \"packageType\": \"PSTRACK\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"packages\": [], \"featureType\": \"NOT_APPLICABLE\"}], \"chargeImmediatelyFlag\": false, \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"contentCollections\": []}], \"offers\": {\"osls\": [], \"skuRelevancy\": [{\"skuId\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"offerAvailability\": []}]}, \"starRating\": {\"total\": \"698988\", \"score\": \"4.52\", \"count\": [{\"score\": 1, \"count\": 47865}, {\"score\": 2, \"count\": 7078}, {\"score\": 3, \"count\": 33383}, {\"score\": 4, \"count\": 56813}, {\"score\": 5, \"count\": 553849}]}, \"isTrending\": false, \"contentTypeId\": 1}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"SHOOT_EM_UP\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"Shoot 'Em Up\", \"type\": \"SHOOT_EM_UP\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"minimumAge\": 17, \"releaseDate\": {\"date\": \"2014-11-18T00:00:00Z\", \"localizedDate\": \"11/17/2014\", \"type\": \"DAY_MONTH_YEAR\"}, \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"storeFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS\", \"value\": 30}, {\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"DUALSHOCK4_VIBRATION\", \"value\": true, \"targetPlatforms\": [\"PS4\"]}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}], \"localizedMedia\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}}}, \"revisionIds\": {\"all\": 1718118515797, \"self\": 1710535295308}, \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://cdn-a.sonyentertainmentnetwork.com/grc/images/ratings/hd/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"starRating\": {\"total\": \"698988\", \"score\": \"4.52\", \"count\": [{\"score\": 1, \"count\": 47865}, {\"score\": 2, \"count\": 7078}, {\"score\": 3, \"count\": 33383}, {\"score\": 4, \"count\": 56813}, {\"score\": 5, \"count\": 553849}]}}]"
+ "string": "[{\"id\": 201930, \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"publisherName\": \"Rockstar Games\", \"media\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)
Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.
Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.
PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
Explore Los Santos and Blaine County in greater detail than ever before, now featuring:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
Plus, all-new enhancements to the ever-evolving world of GTA Online, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
30 network players
Remote Play supported
DUALSHOCK\\u00a04 vibration\"}], \"categorizedProducts\": [{\"topCategory\": \"ADD_ON\", \"ids\": [\"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"UP1004-CUSA00419_00-STARTERPACKOG001\", \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"UP1004-CUSA00419_00-GTAVCASHPACK000F\"]}, {\"topCategory\": \"GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOANDSPUPGRADE\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"UP1004-CUSA00419_00-PREMIUMPACKOG001\", \"UP1004-CUSA00419_00-PREMIUMPACKOGGW1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGME1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGWS1\", \"UP1004-CUSA00419_00-GTAVDIGITALDOWNL\"]}, {\"topCategory\": \"PVU_GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\"]}], \"titleIds\": [\"CUSA01436_00\", \"CUSA00880_00\", \"PPSA03421_00\", \"CUSA00419_00\", \"CUSA29862_00\", \"PPSA04263_00\", \"PPSA03420_00\", \"CUSA00411_00\", \"PPSA04265_00\", \"PPSA04264_00\", \"PPSA01721_00\"], \"country\": \"US\", \"language\": \"en\", \"type\": \"GAME\", \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Grand Theft Auto V (PlayStation\\u00ae5)\"}}, \"localizedDescriptions\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": [{\"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)
Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.
Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.
PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
Explore Los Santos and Blaine County in greater detail than ever before, now featuring:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
Plus, all-new enhancements to the ever-evolving world of GTA Online, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\", \"type\": \"LONG\"}]}}, \"localizedPublisherName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Rockstar Games\"}}, \"defaultProduct\": {\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"conceptId\": 201930, \"titleId\": \"PPSA03420_00\", \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"minimumAge\": 17, \"type\": \"GAME.BUNDLE\", \"storeClassification\": \"GAME\", \"storePrimaryClassification\": \"PREMIUM_GAME\", \"storeSubClassification\": \"BUNDLE\", \"storeDisplayClassification\": \"GAME_BUNDLE\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"topCategory\": \"GAME\", \"localizedTopCategory\": \"Game\", \"edition\": {\"name\": \"\", \"nameEn\": \"\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"ordering\": 2, \"type\": \"STANDARD\", \"features\": [\"Grand Theft Auto Online (PS5\\u2122)\"]}, \"isDefaultProduct\": true, \"isBestSelling\": false, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Includes Grand Theft Auto Online. GTAV: Story Mode can be purchased separately.
Continue your journey on PS5\\u2122 and transfer your GTA Online characters and progression to PS5\\u2122 with a one-time migration.
Experience GTA Online, a dynamic and ever-evolving online universe for up to 30 players, where you can rise from street-level hustler to become a kingpin of your own criminal empire. PlayStation\\u00ae5 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and content released since launch, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.
GTA Online for PlayStation\\u00ae5 also features all-new enhancements, including:
\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort. All this and more available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including nightclubs, arcades, penthouse parties, car meetups, and much more
Plus, all of the enhancements available on latest generation consoles bringing the world of Los Santos and Blaine County in greater detail than ever before, including:
\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, a frame rate of up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and much more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
Remote Play supported\"}, {\"type\": \"LEGAL\", \"desc\": \"
Online features require an account and are subject to terms of service and applicable privacy policy (playstationnetwork.com/terms-of-service & playstationnetwork.com/privacy-policy).
Software subject to license (us.playstation.com/softwarelicense).
\", \"metadata\": {\"downloadCloudFlag\": \"BOTH\", \"subType\": \"SCEA_TOS\"}}, {\"type\": \"LEGAL\", \"desc\": \"
You can download and play this content on the main PS5 console associated with your account (through the \\u201cConsole Sharing and Offline Play\\u201d setting) and on any other PS5 consoles when you login with your same account.
\", \"metadata\": {\"downloadCloudFlag\": \"DOWNLOAD\", \"subType\": \"SCEA_PS5_DRM\"}}, {\"type\": \"LEGAL\", \"desc\": \"
\\u00a9 2008\\u20132022. Rockstar Games, Rockstar North, Grand Theft Auto, GTA Five, Grand Theft Auto Online, and R* are marks/logos/copyrights of Take-Two Interactive. Uses Bink Video. \\u00a9 1997\\u20132022 by Epic Game Tools, Inc. This game includes Autodesk\\u00ae Scaleform\\u00ae software, \\u00a9 2013 Autodesk, Inc. All other marks and trademarks are properties of their respective owners. All rights reserved.
\"}], \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://image.api.playstation.com/grc/images/ratings/hd/esrb/m.png\", \"url4k\": \"https://image.api.playstation.com/grc/images/ratings/4k/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"media\": {\"videos\": [{\"id\": \"10427117\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202203/2115/5WZd4yvNgJ80hrysrckNR6Op.png\"], \"type\": \"PREVIEW\"}, {\"id\": \"11254896\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/231027f2-9aef-4bb7-b4d4-d245fcd554b2-m4lf9lpn/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/231027f2-9aef-4bb7-b4d4-d245fcd554b2-m4lf9lpn/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202412/1214/ce17f09a3242159ca773a7854e122a51b770f59c1c9768ab.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\"], \"localizedGenres\": [{\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}, {\"value\": \"Action\", \"type\": \"ACTION\"}], \"subGenres\": [\"N/A\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"NA\", \"type\": \"N/A\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"releaseDate\": \"2022-03-15T04:00:00Z\", \"localizedReleaseDate\": \"03/15/2022\", \"synonyms\": \"Rockstar Games,GTA Online,GTA V,GTA+,GTA Plus,Shark Cash Card,GTA$,Tarjeta Tibur\\u00f3n,CashCard,\\u0420\\u043e\\u043a\\u0441\\u0442\\u0430\\u0440 \\u0433\\u0435\\u0439\\u043c\\u0441\", \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"isInGameStore\": false, \"isPlaystationStore\": true, \"isPlatformRepresentative\": false, \"isConsumable\": false, \"leadPublisherName\": \"Rockstar Games\", \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}, {\"type\": \"STREAMING_SUPPORTED\", \"value\": \"ENABLED\", \"targetPlatforms\": [\"PS5\"]}], \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"revisionIds\": {}, \"targetPlatforms\": [\"PS5\"], \"skus\": [{\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"displayPrice\": \"$19.99\", \"price\": 1999, \"eligibilities\": [], \"type\": \"STANDARD\", \"name\": \"Game\", \"entitlements\": [{\"id\": \"UP1004-PPSA03420_00-GTAONLINEDIGITAL\", \"name\": \"Grand Theft Auto V\", \"applicationType\": \"STANDARD\", \"packageType\": \"PSGD\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"spokenLanguages\": [\"en\"], \"screenLanguages\": [\"es\", \"zh\", \"fr\", \"ru\", \"de\", \"pl\", \"it\", \"pt_BR\", \"en\", \"es_MX\", \"ko\", \"ch\"], \"packages\": [{\"playablePlatform\": \"PS5\", \"size\": 98521710592}], \"streamingSupported\": true, \"featureType\": \"FULL_GAME\"}, {\"id\": \"UP1004-PPSA03420_00-PSTRACK000000000\", \"name\": \"Grand Theft Auto Online (PS5\\u2122) Tracker\", \"packageType\": \"PSTRACK\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"packages\": [], \"featureType\": \"NOT_APPLICABLE\"}], \"chargeImmediatelyFlag\": false, \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"contentCollections\": []}], \"offers\": {\"osls\": [\"{\\\"metadata\\\":{\\\"id\\\":\\\"OFFER-PROD-10503_50\\\",\\\"schemaVersion\\\":\\\"1.3.2\\\",\\\"modified\\\":\\\"2024-12-13T17:53:04Z\\\",\\\"financeKeyId\\\":\\\"15339327\\\",\\\"campaignId\\\":\\\"PROMO-PROD-00010503\\\",\\\"promoId\\\":10503,\\\"start\\\":\\\"2025-01-03T08:00:00Z\\\",\\\"end\\\":\\\"2025-01-18T07:59:00Z\\\",\\\"version\\\":2,\\\"exclusive\\\":false,\\\"suggestSkuInCart\\\":false,\\\"display\\\":{\\\"formatting\\\":\\\"PERCENTAGE\\\"}},\\\"qualification\\\":{},\\\"content\\\":{\\\"excludes\\\":[],\\\"includes\\\":[]},\\\"reward\\\":{\\\"itemReward\\\":{\\\"discount\\\":{\\\"percent\\\":{\\\"retail\\\":50,\\\"wholesale\\\":null}}},\\\"priority\\\":10,\\\"bias\\\":10,\\\"publisherFunded\\\":null}}\"], \"skuRelevancy\": [{\"skuId\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"offerAvailability\": [{\"offerId\": \"OFFER-PROD-10503_50\", \"startDate\": \"2025-01-03T08:00:00Z\", \"endDate\": \"2025-01-18T07:59:00Z\"}]}]}, \"starRating\": {\"total\": \"771122\", \"score\": \"4.50\", \"count\": [{\"score\": 1, \"count\": 56203}, {\"score\": 2, \"count\": 8177}, {\"score\": 3, \"count\": 38093}, {\"score\": 4, \"count\": 61811}, {\"score\": 5, \"count\": 606838}]}, \"isTrending\": false, \"contentTypeId\": 1}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"SHOOT_EM_UP\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"Shoot 'Em Up\", \"type\": \"SHOOT_EM_UP\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"minimumAge\": 17, \"releaseDate\": {\"date\": \"2014-11-18T00:00:00Z\", \"localizedDate\": \"11/17/2014\", \"type\": \"DAY_MONTH_YEAR\"}, \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"storeFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS\", \"value\": 30}, {\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"DUALSHOCK4_VIBRATION\", \"value\": true, \"targetPlatforms\": [\"PS4\"]}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}], \"localizedMedia\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}}}, \"revisionIds\": {\"all\": 1734015032738, \"self\": 1732036037020}, \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://cdn-a.sonyentertainmentnetwork.com/grc/images/ratings/hd/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"starRating\": {\"total\": \"771122\", \"score\": \"4.50\", \"count\": [{\"score\": 1, \"count\": 56203}, {\"score\": 2, \"count\": 8177}, {\"score\": 3, \"count\": 38093}, {\"score\": 4, \"count\": 61811}, {\"score\": 5, \"count\": 606838}]}}]"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json
index a75e55a..94d2f95 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json
@@ -4,7 +4,7 @@
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/trophy/v1/users/6515971742264256071/titles/trophyTitles?npTitleIds=PPSA03420_00%2C",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
"body": null,
"headers": {
"User-Agent": [
@@ -24,43 +24,226 @@
],
"Country": [
"US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
]
}
},
"response": {
"status": {
- "code": 200,
- "message": "OK"
+ "code": 302,
+ "message": "Moved Temporarily"
},
"headers": {
"Connection": [
"keep-alive"
],
"Server": [
- "Apache"
+ "nginx"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "X-Psn-Request-Id": [
+ "ad84aa658f1e4cd62a1dae7d6eeb739b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.NdB8E7&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Frame-Options": [
+ "DENY"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:51 GMT"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"Cache-Control": [
- "private"
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "Expires": [
+ "0"
+ ],
+ "X-XSS-Protection": [
+ "1; mode=block"
+ ],
+ "Set-Cookie": "REDACTED",
+ "X-RequestId": [
+ "ad84aa658f1e4cd62a1dae7d6eeb739b"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ]
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
"Content-Length": [
- "891"
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Content-Type": [
+ "application/json;charset=UTF-8"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "Content-Length": [
+ "4010"
+ ],
+ "X-Psn-Request-Id": [
+ "43f421bbcb6e96a3038d06b8b0bcc2a5"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:51 GMT"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "X-RequestId": [
+ "43f421bbcb6e96a3038d06b8b0bcc2a5"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://m.np.playstation.com/api/trophy/v1/users/6515971742264256071/titles/trophyTitles?npTitleIds=PPSA03420_00%2C",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
"Content-Type": [
"application/json"
],
- "Set-Cookie": "REDACTED",
+ "Connection": [
+ "keep-alive"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Content-Length": [
+ "912"
+ ],
"Date": [
- "Sun, 16 Jun 2024 22:59:16 GMT"
- ]
+ "Sun, 12 Jan 2025 00:15:52 GMT"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
+ "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json
index f5da470..203e769 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
- "891"
+ "912"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:53 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:17 GMT"
- ]
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
+ "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}"
}
}
},
@@ -96,34 +96,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"23860"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:54 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "max-age=300"
],
- "Set-Cookie": "REDACTED",
"Vary": [
"Accept-Language"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:17 GMT"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"trophySetVersion\": \"01.05\", \"hasTrophyGroups\": true, \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"trophyType\": \"platinum\", \"trophyName\": \"Los Santos Legend\", \"trophyDetail\": \"Congratulations! You're Vinewood's biggest star!\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/8f7cad12-95b0-4040-a320-700466ca64d8.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 1, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Welcome to Los Santos\", \"trophyDetail\": \"You repo'd a car and raced it through the heart of a sun-soaked metropolis.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ccb0b394-e930-4637-83c0-c4e0e7e0f156.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 2, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Friendship Resurrected\", \"trophyDetail\": \"With friends like this who needs enemies?\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/c082b3cb-30e0-415b-87e2-10ada7a695bb.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 3, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Fair Day's Pay\", \"trophyDetail\": \"It's time for a little getaway.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21a106d7-d179-44a4-a27f-b744f9acfa31.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 4, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Moment of Truth\", \"trophyDetail\": \"You have uncovered the truth about Brad.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/35a662f0-6455-4911-a5e0-e6f86a2c225f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 5, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"To Live or Die in Los Santos\", \"trophyDetail\": \"Completed the final mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/c76535a6-a757-43f1-900d-5caac79eea8f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 6, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Diamond Hard\", \"trophyDetail\": \"You cleaned out Vangelico to pay back Martin Madrazo.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/63497dad-fb86-4a40-bdb9-86f7db09124b.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 7, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Subversive\", \"trophyDetail\": \"You stole an experimental super weapon from Merryweather... and gave it back.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/dae889f3-2b0b-4ac6-afaf-c9e41c7f7bfd.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 8, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Blitzed\", \"trophyDetail\": \"You performed a classic blitz play.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d313c61c-ddc6-4c76-b51e-8c5fbdb2fbce.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 9, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Small Town, Big Job\", \"trophyDetail\": \"You made a big impression at the Paleto Bay Chicken Festival.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b3d4eac7-fe14-4ac9-bbb5-646418d7abe7.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 10, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Government Gimps\", \"trophyDetail\": \"You recovered sensitive information from a highly defended federal building.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/af0ef1d1-728d-4dd2-97b8-a76508055574.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 11, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Big One!\", \"trophyDetail\": \"This ain't no dream no more.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d44686dd-d943-45f3-93ec-efc96b161600.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 12, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Solid Gold, Baby!\", \"trophyDetail\": \"Earn any 70 Gold Medals on Missions, Strangers and Freaks.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d9df8fb4-56dd-4a69-996a-2919eb340f81.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 13, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Career Criminal\", \"trophyDetail\": \"Attain 100% Game Completion.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ffe6219d-a628-4979-a564-3c4bcbaa1c0a.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 14, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"San Andreas Sightseer\", \"trophyDetail\": \"Explore all of Los Santos and Blaine County\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f46e02fa-baa3-4bdc-8171-9d9b5d9019c1.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 15, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"All's Fare in Love and War\", \"trophyDetail\": \"Purchase Downtown Cab Co. and complete a private fare.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/407f8f2f-7573-4d3a-b2ed-70c60505eb09.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 16, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"TP Industries Arms Race\", \"trophyDetail\": \"Purchase McKenzie Field Hangar and win the arms race.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b7fa74bb-ff56-40ba-b431-5a35180a7009.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 17, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Multi-Disciplined\", \"trophyDetail\": \"Attain a gold medal in all applicable hobbies and pastimes.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21ee5d53-e1a6-4fde-9dfa-8e75a11fb4ab.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 18, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"From Beyond the Stars\", \"trophyDetail\": \"Collect and return all spaceship parts.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1dd4b0c9-91b8-4927-9804-f5fa2ce17721.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 19, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"A Mystery, Solved\", \"trophyDetail\": \"Solve the mystery of Leonora Johnson.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/47b1c89b-ed56-4de0-b4ee-5a60615d37d5.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 20, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Waste Management\", \"trophyDetail\": \"Purchase the old dock and collect all nuclear waste.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/330c6215-17fc-4c2e-9104-5cad5116a234.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 21, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Red Mist\", \"trophyDetail\": \"Complete all Rampages.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/02a1fa47-eef1-4f49-8153-c58eadf35ca7.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 22, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Show Off\", \"trophyDetail\": \"Complete all Stunt Jumps.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b02e2f9-31bc-49c5-a9c4-4446efc49e5b.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 23, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Kifflom!\", \"trophyDetail\": \"Complete your path to enlightenment... or not.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/4a1fe249-6049-4a09-a129-ddfb7893294c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 24, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Three Man Army\", \"trophyDetail\": \"Survive 3 minutes on at least a 3 star Wanted Level with all three characters together off mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/54c70347-4d07-40b5-9ce6-68b8455f3099.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 25, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Out of Your Depth\", \"trophyDetail\": \"You're gonna need a bigger boat...\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5a5b4506-e41f-42b1-8278-5707e7aa8e58.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 26, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Altruist Acolyte\", \"trophyDetail\": \"Deliver an unsuspecting victim to the Altruist Cult.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3980c235-c092-40d2-ada4-884153336720.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 27, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"A Lot of Cheddar\", \"trophyDetail\": \"Spend a total of $200 million across all three characters.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/0e658cb6-fda4-4a01-9a8b-5a5503e8919c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 28, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Trading Pure Alpha\", \"trophyDetail\": \"Make a profit over your total investments in the stock market.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a9b7f362-7a6c-4ea1-a4d9-d93b19457b5c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 29, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Pimp My Sidearm\", \"trophyDetail\": \"Fully mod a weapon.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/00ccca7f-19d2-4dd3-aff3-c06f7f391bca.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 30, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Wanted: Alive or Alive\", \"trophyDetail\": \"Deliver a bail bond target alive.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/e554e088-23ac-4e85-aed5-82d3262af11f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 31, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Los Santos Customs\", \"trophyDetail\": \"Fully mod a vehicle.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ba518752-81f3-43e8-8dc1-28dc5eb8cc3e.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 32, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Close Shave\", \"trophyDetail\": \"Complete all Under the Bridge and Knife Flight challenges.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9cab1938-414a-420c-9605-c9011510e514.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 33, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Off the Plane\", \"trophyDetail\": \"GTA Online: Complete the Introduction.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5db1c774-34af-44cb-a2b7-2ae55b781ec3.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 34, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Three-Bit Gangster\", \"trophyDetail\": \"GTA Online: Reach Rank 25.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1185e5ad-7117-4d09-8371-30a7c8eda2e6.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 35, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Making Moves\", \"trophyDetail\": \"GTA Online: Reach Rank 50.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bad0a512-df77-4f44-b41e-6c810db3c99a.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 36, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Above the Law\", \"trophyDetail\": \"GTA Online: Reach Rank 100.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bcb13829-8341-47b6-9cf0-4de5a9a8da96.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 37, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Numero Uno\", \"trophyDetail\": \"GTA Online: Obtain first place in all competitive game types.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/af382248-6e89-4174-88c8-4d095753fc85.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 38, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"The Midnight Club\", \"trophyDetail\": \"GTA Online: Use custom vehicles to win 5 races.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f6e54ad8-baaf-4700-99d2-2e1211d1b8a1.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 39, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Unnatural Selection\", \"trophyDetail\": \"GTA Online: Complete all 10 waves of a Survival.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b8aa2c7-5942-4d38-ae24-b144a5c224b0.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 40, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Backseat Driver\", \"trophyDetail\": \"GTA Online: Direct a driver to 1st place as co-driver in Rally Mode.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/cb18180a-42f9-4409-8012-06db0f74adef.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 41, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Run Like The Wind\", \"trophyDetail\": \"GTA Online: Survive with a Bounty on your head.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/0842e88f-49e9-4d69-a5f8-0e512057aead.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 42, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Clean Sweep\", \"trophyDetail\": \"GTA Online: Finish a Gang Attack without dying and kill at least 10 enemies.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9d4390c2-7688-44b8-aaa5-ff6fe1828a83.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 43, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Decorated\", \"trophyDetail\": \"GTA Online: Earn 30 Platinum Awards.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/36f36a57-e3e7-4c33-9914-b9e462aaa58e.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 44, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Stick Up Kid\", \"trophyDetail\": \"GTA Online: Hold up all 20 Stores.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/39749c5e-9981-4547-9166-ba143ce56974.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 45, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Enjoy Your Stay\", \"trophyDetail\": \"GTA Online: Participate in everything Los Santos has to offer.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3f11179e-721f-4b46-bab5-46ebec2ff694.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 46, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Crew Cut\", \"trophyDetail\": \"GTA Online: Complete a Job as a member of a Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/df83cb3e-9508-452d-9cf9-e12d049fa182.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 47, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Full Refund\", \"trophyDetail\": \"GTA Online: Kill the thief that mugged you.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/66d261cd-37f5-4201-b587-8ece8e044c2f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 48, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Dialling Digits\", \"trophyDetail\": \"GTA Online: Call for a Backup Helicopter for the first time.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5101d345-6515-4b20-9eda-2195adbcddea.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 50, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A New Perspective\", \"trophyDetail\": \"You played GTA V in first person mode for 15 hours.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/22b4725a-fe3f-446a-b30b-221114625d86.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 51, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Be Prepared\", \"trophyDetail\": \"GTA Online: You completed a Heist Setup mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2c5f9523-c8a5-47f2-bb92-b905158f019f.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 52, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"In the Name of Science\", \"trophyDetail\": \"GTA Online: You completed The Humane Labs Raid and Series A Funding as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/56f35ca1-784e-4bc2-99e2-da7065538435.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 53, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Dead Presidents\", \"trophyDetail\": \"GTA Online: You completed The Fleeca Job and The Pacific Standard Job as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/089c98e8-f8ae-4014-8166-1201f7f2094f.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 54, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Parole Day\", \"trophyDetail\": \"GTA Online: You completed The Prison Break as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21bd824f-c7eb-408b-8ed6-7fc00ab9c371.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 55, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Shot Caller\", \"trophyDetail\": \"GTA Online: Invest your hard earned cash to set up a Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5b55f68b-feaa-48e0-bae7-b1e40e460099.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 56, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Four Way\", \"trophyDetail\": \"GTA Online: As Heist Leader set the finale cut as 25% across all players.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a49d5abe-8e78-43aa-ad30-ac1e21c36733.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 57, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Live a Little\", \"trophyDetail\": \"GTA Online: Spend a total of $8,000,000 purchasing vehicles included as part of The Heists Update.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2fd2bf5d-dac3-48b8-8117-93f9c3b02e15.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 58, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Can't Touch This\", \"trophyDetail\": \"GTA Online: Complete a Heist finale without taking any damage.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2626a548-4fc2-46a7-96be-73b2ceb0d068.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 59, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Mastermind\", \"trophyDetail\": \"GTA Online: Earn 25 platinum medals across Heist Setups and Finales.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a4de49db-bdb6-4bd1-93b4-623c64c856f2.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 60, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Vinewood Visionary\", \"trophyDetail\": \"Create and export a video using the Rockstar Editor or enter Director Mode 5 times.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a9e1a4dc-0eeb-4fa2-9ff3-5a9f60fda39c.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 61, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Majestic\", \"trophyDetail\": \"Create and export 10 videos using the Rockstar Editor or enter Director Mode 10 times.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f562afb6-2620-4d3c-be6b-d4172c3d6eb6.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 62, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Humans of Los Santos\", \"trophyDetail\": \"Unlock all Special Characters and enter Director Mode as an actor from this category.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d8a79b66-810b-468f-9d5f-19b396db9f6a.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 63, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"First Time Director\", \"trophyDetail\": \"Enter Director Mode for the first time as an unlocked actor.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b1a55eac-82b9-45c8-aaf3-e1646654f340.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 64, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Animal Lover\", \"trophyDetail\": \"Enter Director Mode as an unlocked animal actor for the first time.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3399b70a-85c6-44bf-be5f-c699378a5d8c.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 65, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Ensemble Piece\", \"trophyDetail\": \"Unlock all Story Characters and enter Director Mode as an actor from this category.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/878d3a77-39ba-4ff1-9c7b-8efeaddecbde.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 66, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Cult Movie\", \"trophyDetail\": \"Enter Director Mode as Cris Formage.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3a7c420c-5a8e-477b-b082-2af8620215a1.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 67, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Location Scout\", \"trophyDetail\": \"Visit all Locations in Director Mode.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/510a70e0-01a5-407c-920f-974ddf1bc5c9.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 68, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Method Actor\", \"trophyDetail\": \"Enter Director Mode using any of your own GTA Online characters.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/e0acccdc-a817-4d14-9106-0adf8acd47e7.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 69, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"Cryptozoologist\", \"trophyDetail\": \"You unlocked all animals for use in Director Mode... or did you?\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9ffba69b-d45a-4ea7-93aa-61853af8a331.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 70, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Getting Started\", \"trophyDetail\": \"GTA Online: Set up The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/42e7e485-c547-4f9d-878d-f6b2253960d4.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 71, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Data Breaches\", \"trophyDetail\": \"GTA Online: You completed Act I of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/97d86b5c-b1f4-4c84-91cb-30bd7ddb6dc5.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 72, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"The Bogdan Problem\", \"trophyDetail\": \"GTA Online: You completed Act II of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/7f483395-beb7-4fd5-9c65-735b9b4d6e16.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 73, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"The Doomsday Scenario\", \"trophyDetail\": \"GTA Online: You completed Act III of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bc84cae6-bbb9-4a28-9cb3-95f135dbf72a.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 74, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"A World Worth Saving\", \"trophyDetail\": \"GTA Online: You completed The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/79baf833-7a10-4cc7-9971-2ef77319c122.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 75, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Orbital Obliteration\", \"trophyDetail\": \"GTA Online: Kill another player with the Orbital Cannon.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/974b2ee7-668e-4502-89de-fadc6c433ce8.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 76, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Elitist\", \"trophyDetail\": \"GTA Online: Complete all 3 Elite Challenges in The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1fbc03fe-32c2-4571-bc29-24e42d35e0ab.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 77, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Masterminds\", \"trophyDetail\": \"GTA Online: Complete all 3 Criminal Mastermind challenges in The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b3bb9df-8f39-4d2b-9058-30163a80861c.png\", \"trophyGroupId\": \"003\"}], \"totalItemCount\": 78}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json
index 4c9e3d8..356ff6b 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json
@@ -33,31 +33,31 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"59"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:55 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:18 GMT"
- ]
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": []}]}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json
index 90b714a..64d916b 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json
@@ -33,6 +33,9 @@
"message": "Not Found"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
@@ -42,22 +45,19 @@
"Content-Length": [
"110"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:56 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:19 GMT"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"10175255-2c34-11ef-b7a9-738751f20872\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
+ "string": "{\"error\": {\"referenceId\": \"647ebece-d07a-11ef-bcc8-195e5d2c6e18\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json
index ff09393..c8375ac 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json
@@ -33,34 +33,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
- "880"
+ "901"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:54 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:18 GMT"
- ]
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 44, \"trophyHidden\": true, \"trophyType\": \"gold\", \"trophyName\": \"Run Astro Run!\", \"trophyDetail\": \"Got a total Speed Run time of 7 minutes or under.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/77cba17d-c338-41c6-a3e5-4a6687d8730d.png\", \"trophyRare\": 0, \"trophyEarnedRate\": \"3.7\", \"earned\": true, \"earnedDateTime\": \"2020-12-20T08:06:44Z\"}], \"progress\": 93, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-12-20T08:06:45Z\"}]}]}"
+ "string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"rarestTrophies\": [{\"trophyId\": 44, \"trophyHidden\": true, \"trophyType\": \"gold\", \"trophyName\": \"Run Astro Run!\", \"trophyDetail\": \"Got a total Speed Run time of 7 minutes or under.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/77cba17d-c338-41c6-a3e5-4a6687d8730d.png\", \"trophyRare\": 0, \"trophyEarnedRate\": \"3.7\", \"earned\": true, \"earnedDateTime\": \"2020-12-20T08:06:44Z\"}], \"progress\": 93, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-12-20T08:06:45Z\"}]}]}"
}
}
},
@@ -96,34 +96,34 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "max-age=300"
- ],
"Content-Length": [
"1137"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:55 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "max-age=300"
],
- "Set-Cookie": "REDACTED",
"Vary": [
"Accept-Language"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:18 GMT"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophySetVersion\": \"01.40\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"trophyTitlePlatform\": \"PS5\", \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"trophyGroups\": [{\"trophyGroupId\": \"default\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}}, {\"trophyGroupId\": \"001\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM [ADD-ON]\", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/07628edd-c7e7-4762-9409-edcece03a12d.png\", \"definedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 2, \"platinum\": 0}}, {\"trophyGroupId\": \"002\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM [ADD-ON] \", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/1c8dc8da-12c2-4a5a-a6f0-d89f2fd9c6c1.png\", \"definedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}}]}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json
index da35cfe..172d385 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json
@@ -33,31 +33,31 @@
"message": "OK"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
"Server": [
"Apache"
],
- "Cache-Control": [
- "private"
- ],
"Content-Length": [
"59"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:56 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:18 GMT"
- ]
+ "Cache-Control": [
+ "private"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": []}]}"
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json
index 81a85ed..ad914da 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json
@@ -33,6 +33,9 @@
"message": "Not Found"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
@@ -42,22 +45,19 @@
"Content-Length": [
"110"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:56 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:19 GMT"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"1039a7b1-2c34-11ef-ba39-bd72c10ade5e\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
+ "string": "{\"error\": {\"referenceId\": \"64beadf0-d07a-11ef-a509-7509b9324c80\", \"code\": 2240525, \"message\": \"Resource not found\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json
index df5fdd8..1637e24 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json
@@ -33,6 +33,9 @@
"message": "Not Found"
},
"headers": {
+ "Content-Type": [
+ "application/json"
+ ],
"Connection": [
"keep-alive"
],
@@ -42,22 +45,19 @@
"Content-Length": [
"137"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Date": [
+ "Sun, 12 Jan 2025 00:15:52 GMT"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Type": [
- "application/json"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:16 GMT"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"0ea3ec89-2c34-11ef-8e49-b38c344b0b00\", \"code\": 2240525, \"message\": \"Resource not found (npTitleId='SSSA01325_00')\"}}"
+ "string": "{\"error\": {\"referenceId\": \"62295c84-d07a-11ef-b247-37ac2715e446\", \"code\": 2240525, \"message\": \"Resource not found (npTitleId='SSSA01325_00')\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json
index 72a9f3b..8a6049c 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json
@@ -39,50 +39,50 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:27 GMT"
],
- "Content-Length": [
- "159"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:18 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "159"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"mainThread\": {\"threadId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\"}, \"hasAllAccountInvited\": true}"
+ "string": "{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"mainThread\": {\"threadId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\"}, \"hasAllAccountInvited\": true}"
}
}
},
{
"request": {
"method": "PATCH",
- "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961",
+ "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372",
"body": "{\"groupName\": {\"value\": \"Testing API\"}}",
"headers": {
"User-Agent": [
@@ -117,11 +117,23 @@
"message": "No Content"
},
"headers": {
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:28 GMT"
+ ],
"Cache-Control": [
"private"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH, OPTIONS"
@@ -129,22 +141,10 @@
"Server": [
"Apache"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:18 GMT"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Set-Cookie": "REDACTED",
- "Connection": [
- "keep-alive"
- ],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
],
- "X-Content-Type-Options": [
- "nosniff"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": ""
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json
index 4a6eb8c..cb8cf78 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json
@@ -33,39 +33,39 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:26 GMT"
],
- "Content-Length": [
- "245"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:16 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "245"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
@@ -111,40 +111,40 @@
"message": "Bad Request"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
- "Server": [
- "Apache"
- ],
- "Content-Length": [
- "103"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 02:19:16 GMT"
+ "Sun, 12 Jan 2025 03:23:26 GMT"
+ ],
+ "Connection": [
+ "close"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "close"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "103"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"78737ee9-4187-11ef-9d3b-ab129bf6db4c\", \"code\": 2285696, \"message\": \"Bad Request\"}}"
+ "string": "{\"error\": {\"referenceId\": \"963ad5ef-d094-11ef-a38e-6b1b14c80376\", \"code\": 2285696, \"message\": \"Bad Request\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json
index eede6d1..2e006b5 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json
@@ -39,40 +39,40 @@
"message": "Forbidden"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
- "Server": [
- "Apache"
- ],
- "Content-Length": [
- "140"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 02:19:17 GMT"
+ "Sun, 12 Jan 2025 03:23:27 GMT"
+ ],
+ "Connection": [
+ "close"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "close"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "140"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"79081d25-4187-11ef-9e5f-2db2ca44f497\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}"
+ "string": "{\"error\": {\"referenceId\": \"96be8491-d094-11ef-bc3b-bd42a98b615d\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json
index d4e58d6..2791a8d 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json
@@ -4,7 +4,7 @@
{
"request": {
"method": "GET",
- "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
+ "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/members/me/groups?includeFields=members&limit=1&offset=0",
"body": null,
"headers": {
"User-Agent": [
@@ -24,231 +24,48 @@
],
"Country": [
"US"
- ],
- "Content-Type": [
- "application/x-www-form-urlencoded"
- ],
- "X-Requested-With": [
- "com.scee.psxandroid"
- ],
- "Sec-Fetch-Dest": [
- "document"
- ],
- "Sec-Fetch-Mode": [
- "navigate"
- ],
- "Sec-Fetch-Site": [
- "same-site"
- ],
- "Sec-Fetch-User": [
- "?1"
]
}
},
"response": {
"status": {
- "code": 302,
- "message": "Moved Temporarily"
+ "code": 200,
+ "message": "OK"
},
"headers": {
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.3y77vQ&cid=00000000-0000-0000-0000-b025aa3b2674"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "Connection": [
- "keep-alive"
- ],
- "Set-Cookie": "REDACTED",
- "X-XSS-Protection": [
- "1; mode=block"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "X-Psn-Request-Id": [
- "e5535c2500e6a409f1b60a0c8b3ec01a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "Server": [
- "nginx"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 03:02:15 GMT"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Expires": [
- "0"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "X-RequestId": [
- "e5535c2500e6a409f1b60a0c8b3ec01a"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "body": {
- "string": ""
- }
- }
- },
- {
- "request": {
- "method": "POST",
- "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
- "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
- "headers": {
- "User-Agent": [
- "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
- ],
- "Accept-Encoding": [
- "gzip, deflate"
+ "Sun, 12 Jan 2025 03:23:25 GMT"
],
- "Accept": [
- "*/*"
+ "Cache-Control": [
+ "private"
],
- "Connection": [
- "keep-alive"
- ],
- "Accept-Language": [
- "en-US,en;q=0.9"
- ],
- "Country": [
- "US"
- ],
- "Content-Type": [
- "application/x-www-form-urlencoded"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Content-Length": [
- "207"
- ]
- }
- },
- "response": {
- "status": {
- "code": 200,
- "message": "OK"
- },
- "headers": {
"Connection": [
"keep-alive"
],
"Set-Cookie": "REDACTED",
- "Cache-Control": [
- "no-store"
- ],
- "X-Psn-Request-Id": [
- "f4cedebaac240905f3bfa8544032a616"
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Sun, 14 Jul 2024 03:02:15 GMT"
- ],
- "Server": [
- "nginx"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Content-Type": [
- "application/json;charset=UTF-8"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "X-RequestId": [
- "f4cedebaac240905f3bfa8544032a616"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
"Content-Length": [
- "3998"
- ]
- },
- "body": {
- "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
- }
- }
- },
- {
- "request": {
- "method": "GET",
- "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/members/me/groups?includeFields=members&limit=1&offset=0",
- "body": null,
- "headers": {
- "User-Agent": [
- "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
- ],
- "Accept-Encoding": [
- "gzip, deflate"
- ],
- "Accept": [
- "*/*"
- ],
- "Connection": [
- "keep-alive"
- ],
- "Accept-Language": [
- "en-US,en;q=0.9"
- ],
- "Country": [
- "US"
- ]
- }
- },
- "response": {
- "status": {
- "code": 200,
- "message": "OK"
- },
- "headers": {
- "Connection": [
- "keep-alive"
- ],
- "Set-Cookie": "REDACTED",
- "Cache-Control": [
- "private"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "245"
],
- "Date": [
- "Sun, 14 Jul 2024 03:02:15 GMT"
+ "Content-Type": [
+ "application/json"
],
"Server": [
"Apache"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
"Access-Control-Allow-Headers": [
"Authorization, Content-Type"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
- "Content-Length": [
- "245"
]
},
"body": {
@@ -288,43 +105,43 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:25 GMT"
],
- "Set-Cookie": "REDACTED",
"Cache-Control": [
"private"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Sun, 14 Jul 2024 03:02:15 GMT"
- ],
- "Server": [
- "Apache"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ ],
+ "Content-Length": [
+ "769"
],
"Content-Type": [
"application/json"
],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Server": [
+ "Apache"
],
- "Content-Length": [
- "764"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"modifiedTimestamp\": \"1720923646497\", \"groupName\": {\"value\": \"\", \"status\": 0}, \"groupIcon\": {\"status\": 0}, \"joinedTimestamp\": \"1717991006000\", \"isFavorite\": false, \"existsNewArrival\": false, \"mainThread\": {\"threadId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"modifiedTimestamp\": \"1720923646497\", \"latestMessage\": {\"messageUid\": \"1#440556453503362\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello\", \"createdTimestamp\": \"1720923646497\", \"sender\": {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}}, \"readMessageUid\": \"1#440556453503362\"}, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}], \"notificationSetting\": {\"isMute\": false}}"
+ "string": "{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"modifiedTimestamp\": \"1736652205473\", \"groupName\": {\"value\": \"\", \"status\": 0}, \"groupIcon\": {\"status\": 0}, \"joinedTimestamp\": \"1717991006000\", \"isFavorite\": false, \"existsNewArrival\": false, \"mainThread\": {\"threadId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"modifiedTimestamp\": \"1736652205473\", \"latestMessage\": {\"messageUid\": \"1#444582964601306\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World!\", \"createdTimestamp\": \"1736652205473\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}, \"readMessageUid\": \"1#444582964601306\"}, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}], \"notificationSetting\": {\"isMute\": false}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json
index a4b752c..95e3fdb 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json
@@ -33,39 +33,39 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:25 GMT"
],
- "Content-Length": [
- "245"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:15 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "245"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
@@ -111,43 +111,43 @@
"message": "Created"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:25 GMT"
],
- "Content-Length": [
- "69"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:16 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "69"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"messageUid\": \"1#440556430326987\", \"createdTimestamp\": \"1720923555964\"}"
+ "string": "{\"messageUid\": \"1#444582964601306\", \"createdTimestamp\": \"1736652205473\"}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json
index b48bcc3..714e419 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json
@@ -39,39 +39,39 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:24 GMT"
],
- "Content-Length": [
- "139"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:14 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "139"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
@@ -117,43 +117,43 @@
"message": "Created"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:24 GMT"
],
- "Content-Length": [
- "69"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:15 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "69"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"messageUid\": \"1#440556430130324\", \"createdTimestamp\": \"1720923555196\"}"
+ "string": "{\"messageUid\": \"1#444582964418900\", \"createdTimestamp\": \"1736652204761\"}"
}
}
},
@@ -189,43 +189,43 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:25 GMT"
],
- "Content-Length": [
- "318"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:15 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "318"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"messages\": [{\"messageUid\": \"1#440556430130324\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World\", \"createdTimestamp\": \"1720923555196\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}], \"previous\": \"1#440556430130324\", \"next\": \"1#440556430130324\", \"reachedEndOfPage\": false, \"messageCount\": 1}"
+ "string": "{\"messages\": [{\"messageUid\": \"1#444582964418900\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World\", \"createdTimestamp\": \"1736652204761\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}], \"previous\": \"1#444582964418900\", \"next\": \"1#444582964418900\", \"reachedEndOfPage\": false, \"messageCount\": 1}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json
index dde484d..c8e64b3 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json
@@ -51,51 +51,51 @@
"message": "Moved Temporarily"
},
"headers": {
+ "Expires": [
+ "0"
+ ],
"Cache-Control": [
"no-cache, no-store, max-age=0, must-revalidate"
],
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.KEWAVS&cid=00000000-0000-0000-0000-b025aa3b2674"
- ],
"X-XSS-Protection": [
"1; mode=block"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Psn-Request-Id": [
+ "75261df7cd377ec95b6b116893ede366"
],
- "X-RequestId": [
- "4c159ba156569af5cdfbaebf21ba55d2"
+ "Connection": [
+ "keep-alive"
],
- "X-Psn-Request-Id": [
- "4c159ba156569af5cdfbaebf21ba55d2"
+ "X-Frame-Options": [
+ "DENY"
],
- "Date": [
- "Sun, 14 Jul 2024 02:58:55 GMT"
+ "Set-Cookie": "REDACTED",
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.ppiSLB&cid=00000000-0000-0000-0000-b025aa3b2674"
],
"Strict-Transport-Security": [
"max-age=31536000 ; includeSubDomains"
],
- "Expires": [
- "0"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "X-Frame-Options": [
- "DENY"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "Connection": [
- "keep-alive"
+ "X-RequestId": [
+ "75261df7cd377ec95b6b116893ede366"
],
"Content-Length": [
"0"
],
- "Set-Cookie": "REDACTED",
"X-Psn-Correlation-Id": [
"00000000-0000-0000-0000-b025aa3b2674"
],
"Server": [
"nginx"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:23 GMT"
]
},
"body": {
@@ -147,37 +147,37 @@
"Cache-Control": [
"no-store"
],
- "Content-Type": [
- "application/json;charset=UTF-8"
+ "X-Psn-Request-Id": [
+ "81100f8e99ae2cb17af200c2938f1bb8"
+ ],
+ "Connection": [
+ "keep-alive"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-RequestId": [
- "91b5d3128a623976b654a25e4e521e79"
+ "81100f8e99ae2cb17af200c2938f1bb8"
],
- "X-Psn-Request-Id": [
- "91b5d3128a623976b654a25e4e521e79"
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
],
- "Date": [
- "Sun, 14 Jul 2024 02:58:55 GMT"
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "Server": [
+ "nginx"
],
"X-CorrelationId": [
"00000000-0000-0000-0000-b025aa3b2674"
],
- "Connection": [
- "keep-alive"
- ],
"Content-Length": [
- "3998"
+ "4010"
],
- "Set-Cookie": "REDACTED",
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:23 GMT"
],
- "Server": [
- "nginx"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
@@ -216,40 +216,40 @@
"message": "Not Found"
},
"headers": {
- "Content-Type": [
- "application/json"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Server": [
- "Apache"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 02:58:55 GMT"
+ "Sun, 12 Jan 2025 03:23:23 GMT"
],
- "Set-Cookie": "REDACTED",
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "Connection": [
- "keep-alive"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
"Content-Length": [
"157"
],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
"Access-Control-Allow-Headers": [
"Authorization, Content-Type"
- ],
- "Access-Control-Allow-Origin": [
- "*"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"02623784-418d-11ef-b1db-99d59f5115e6\", \"code\": 2285581, \"message\": \"Resource not found (groupId='~25C4C5406FD6D50E.763F9A1EB6AB5791')\"}}"
+ "string": "{\"error\": {\"referenceId\": \"947f437d-d094-11ef-96d1-0556d7703a14\", \"code\": 2285581, \"message\": \"Resource not found (groupId='~25C4C5406FD6D50E.763F9A1EB6AB5791')\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json
index 3d3c035..83de942 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json
@@ -33,43 +33,43 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:29 GMT"
],
- "Content-Length": [
- "192"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:19 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "192"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
+ "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
}
}
},
@@ -111,39 +111,39 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:29 GMT"
],
- "Content-Length": [
- "139"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:20 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "139"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json
index 0018dd6..52f6da5 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json
@@ -33,43 +33,43 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:29 GMT"
],
- "Content-Length": [
- "192"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:20 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "192"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
+ "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
}
}
},
@@ -111,40 +111,40 @@
"message": "Forbidden"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
- "Server": [
- "Apache"
- ],
- "Content-Length": [
- "140"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 02:19:20 GMT"
+ "Sun, 12 Jan 2025 03:23:29 GMT"
+ ],
+ "Connection": [
+ "close"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "close"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "140"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"7ad5d8d4-4187-11ef-8d49-c56d5feb84ef\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}"
+ "string": "{\"error\": {\"referenceId\": \"982b5b55-d094-11ef-af95-b73221aa4650\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json
index b09853a..74aa33e 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json
@@ -33,50 +33,50 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:28 GMT"
],
- "Content-Length": [
- "255"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:18 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "255"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
+ "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
}
}
},
{
"request": {
"method": "DELETE",
- "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/2066273503397112667",
+ "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/2066273503397112667",
"body": null,
"headers": {
"User-Agent": [
@@ -108,11 +108,23 @@
"message": "No Content"
},
"headers": {
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:28 GMT"
+ ],
"Cache-Control": [
"private"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH, OPTIONS"
@@ -120,22 +132,10 @@
"Server": [
"Apache"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:19 GMT"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Set-Cookie": "REDACTED",
- "Connection": [
- "keep-alive"
- ],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
],
- "X-Content-Type-Options": [
- "nosniff"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": ""
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json
index ca46a28..d3e8dc1 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json
@@ -33,50 +33,50 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:28 GMT"
],
- "Content-Length": [
- "192"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:19 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "192"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
+ "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
}
}
},
{
"request": {
"method": "DELETE",
- "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/5007681186655854753",
+ "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/5007681186655854753",
"body": null,
"headers": {
"User-Agent": [
@@ -108,40 +108,40 @@
"message": "Not Found"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
- ],
- "Server": [
- "Apache"
- ],
- "Content-Length": [
- "167"
+ "Access-Control-Allow-Origin": [
+ "*"
],
"Date": [
- "Sun, 14 Jul 2024 02:19:19 GMT"
+ "Sun, 12 Jan 2025 03:23:28 GMT"
+ ],
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "167"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"7a121352-4187-11ef-b1ec-2fd7ea9f3f12\", \"code\": 2285581, \"message\": \"Resource not found (groupId='dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961')\"}}"
+ "string": "{\"error\": {\"referenceId\": \"979b01ab-d094-11ef-9efd-55b737e0d372\", \"code\": 2285581, \"message\": \"Resource not found (groupId='34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372')\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json
index 62b0336..15f7033 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json
@@ -33,50 +33,50 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:30 GMT"
],
- "Content-Length": [
- "192"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:21 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "192"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
- "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
+ "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}"
}
}
},
{
"request": {
"method": "DELETE",
- "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/me",
+ "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/me",
"body": null,
"headers": {
"User-Agent": [
@@ -108,11 +108,23 @@
"message": "No Content"
},
"headers": {
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:30 GMT"
+ ],
"Cache-Control": [
"private"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
+ "Connection": [
+ "keep-alive"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH, OPTIONS"
@@ -120,22 +132,10 @@
"Server": [
"Apache"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:21 GMT"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Set-Cookie": "REDACTED",
- "Connection": [
- "keep-alive"
- ],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
],
- "X-Content-Type-Options": [
- "nosniff"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": ""
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json
index 404682c..f2da808 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json
@@ -33,39 +33,39 @@
"message": "OK"
},
"headers": {
- "Cache-Control": [
- "private"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Content-Type"
- ],
- "Access-Control-Allow-Methods": [
- "GET, PUT, POST, DELETE, PATCH, OPTIONS"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Server": [
- "Apache"
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:26 GMT"
],
- "Content-Length": [
- "245"
+ "Cache-Control": [
+ "private"
],
- "Date": [
- "Sun, 14 Jul 2024 02:19:16 GMT"
+ "Connection": [
+ "keep-alive"
],
+ "Set-Cookie": "REDACTED",
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Connection": [
- "keep-alive"
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, PATCH, OPTIONS"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Content-Length": [
+ "245"
],
- "Set-Cookie": "REDACTED",
"Content-Type": [
"application/json"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Content-Type"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json
index 6415443..7df9bde 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json
@@ -1,189 +1,6 @@
{
"version": 1,
"interactions": [
- {
- "request": {
- "method": "GET",
- "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
- "body": null,
- "headers": {
- "User-Agent": [
- "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
- ],
- "Accept-Encoding": [
- "gzip, deflate"
- ],
- "Accept": [
- "*/*"
- ],
- "Connection": [
- "keep-alive"
- ],
- "Accept-Language": [
- "en-US,en;q=0.9"
- ],
- "Country": [
- "US"
- ],
- "Content-Type": [
- "application/x-www-form-urlencoded"
- ],
- "X-Requested-With": [
- "com.scee.psxandroid"
- ],
- "Sec-Fetch-Dest": [
- "document"
- ],
- "Sec-Fetch-Mode": [
- "navigate"
- ],
- "Sec-Fetch-Site": [
- "same-site"
- ],
- "Sec-Fetch-User": [
- "?1"
- ]
- }
- },
- "response": {
- "status": {
- "code": 302,
- "message": "Moved Temporarily"
- },
- "headers": {
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "0"
- ],
- "Date": [
- "Sun, 14 Jul 2024 03:10:32 GMT"
- ],
- "X-RequestId": [
- "69f7728fc745138bdddc0c00cc717da2"
- ],
- "Server": [
- "nginx"
- ],
- "Set-Cookie": "REDACTED",
- "Location": [
- "com.scee.psxandroid.scecompcall://redirect/?code=v3.z3wDXp&cid=00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Expires": [
- "0"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "X-Psn-Request-Id": [
- "69f7728fc745138bdddc0c00cc717da2"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-XSS-Protection": [
- "1; mode=block"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Connection": [
- "keep-alive"
- ]
- },
- "body": {
- "string": ""
- }
- }
- },
- {
- "request": {
- "method": "POST",
- "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
- "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
- "headers": {
- "User-Agent": [
- "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
- ],
- "Accept-Encoding": [
- "gzip, deflate"
- ],
- "Accept": [
- "*/*"
- ],
- "Connection": [
- "keep-alive"
- ],
- "Accept-Language": [
- "en-US,en;q=0.9"
- ],
- "Country": [
- "US"
- ],
- "Content-Type": [
- "application/x-www-form-urlencoded"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Content-Length": [
- "207"
- ]
- }
- },
- "response": {
- "status": {
- "code": 200,
- "message": "OK"
- },
- "headers": {
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "3998"
- ],
- "X-RequestId": [
- "664863c168ca011b889a2d3aaa2f834c"
- ],
- "Server": [
- "nginx"
- ],
- "Set-Cookie": "REDACTED",
- "Content-Type": [
- "application/json;charset=UTF-8"
- ],
- "X-Psn-Request-Id": [
- "664863c168ca011b889a2d3aaa2f834c"
- ],
- "X-CorrelationId": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Cache-Control": [
- "no-store"
- ],
- "Date": [
- "Sun, 14 Jul 2024 03:10:32 GMT"
- ],
- "X-Psn-Correlation-Id": [
- "00000000-0000-0000-0000-b025aa3b2674"
- ],
- "Connection": [
- "keep-alive"
- ]
- },
- "body": {
- "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
- }
- }
- },
{
"request": {
"method": "GET",
@@ -225,25 +42,23 @@
"message": "OK"
},
"headers": {
- "Vary": [
- "Origin",
- "Accept-Encoding"
+ "Access-Control-Allow-Credentials": [
+ "true"
],
- "strict-transport-security": [
- "max-age=15552000; includeSubDomains"
+ "x-frame-options": [
+ "SAMEORIGIN"
],
- "content-length": [
- "81973"
+ "x-xss-protection": [
+ "1; mode=block"
],
"Pragma": [
"no-cache"
],
- "x-xss-protection": [
- "1; mode=block"
+ "Connection": [
+ "keep-alive"
],
- "Set-Cookie": "REDACTED",
- "x-dns-prefetch-control": [
- "off"
+ "Content-Type": [
+ "application/json"
],
"x-content-type-options": [
"nosniff"
@@ -251,33 +66,35 @@
"x-download-options": [
"noopen"
],
- "Expires": [
- "Sun, 14 Jul 2024 03:10:33 GMT"
+ "ETag": [
+ "W/\"13d9f-3AB1PXvOF0ZjF6as6AalLXyjTN8\""
],
- "Content-Type": [
- "application/json"
+ "strict-transport-security": [
+ "max-age=15552000; includeSubDomains"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "Vary": [
+ "Origin",
+ "Accept-Encoding"
],
- "ETag": [
- "W/\"14036-Zqdp9UOFGCZiqAWlZGNk/1hFFSY\""
+ "Expires": [
+ "Sun, 12 Jan 2025 00:16:06 GMT"
],
"Date": [
- "Sun, 14 Jul 2024 03:10:33 GMT"
+ "Sun, 12 Jan 2025 00:16:06 GMT"
],
- "Access-Control-Allow-Credentials": [
- "true"
+ "Set-Cookie": "REDACTED",
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
],
- "x-frame-options": [
- "SAMEORIGIN"
+ "x-dns-prefetch-control": [
+ "off"
],
- "Connection": [
- "keep-alive"
+ "content-length": [
+ "81310"
]
},
"body": {
- "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6NmMyYmY4NmQtYzM4Yy00YTU0LTg4ZWYtMTMxZWU3ZTgxYzhjLXNZNVI3anlYLTItMTcyMDkxNTIwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioCMzk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202406/2810/03660f882c549e181182b0a0a7d9021f99ee2fd54171ef71.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 40, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtNDU1Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0zMDc\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}"
+ "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzk5NQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"200477\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03507_00-SLUS212690000001\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0802/ec072c1cd3b72838476a53056a923771bc16d08c43d68d3c.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"200477\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2015/66870e3605f0a6f04df0463486470874ac25b9acd600d8d8.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"231844\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0082-CUSA10938_00-DEFINITIVE00SIEA\", \"invariantName\": \"Shadow of the Tomb Raider Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307dK21b0mNOkOhnHW3lKVRuib4EaNWuCmXtt0wMdKVAlE7sYUbD6YOcpgSFImpnxjg--_1p1RgWHadbDnNHpRhzMf28SD.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yguQQ6t1hWTw0aaf_7mI7PLV0nuWRTzhfCFd9HG2abU6IHxZhrfzdlQcpK6lSyaBn9BTv3t_KcD_KgX-H3BNTcbKk0j.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307obn0reFe1U4gMc6b1pGe29vUWBAwdA8-rwjTkBN9iSwdc4rU6hpu5QI4ZXkrja75v0RAOXR1bNsTAg1jbb-3AgvCc1Y.png\"}], \"name\": \"Shadow of the Tomb Raider Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"231844\", \"invariantName\": \"Shadow of the Tomb Raider\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10872_00/6/i_bf48f37e880368d90e7d619b254088edb96086a63ce0554a1c227701e6e5f357/i/icon0.png\"}], \"name\": \"Shadow of the Tomb Raider\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"204794\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03972_00-00000000000GOTY7\", \"invariantName\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202301/2800/iVue7C5G9BCBeiREDJTxjqch.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/hfxDHG9zRcCC7JcviyqgqGUc.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/9uU0gBq02jmXHtDsm82AV722.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/3w3HeyHIT2CKQYS2ODdCwl3j.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0807/IqM9JK6MTlSfKFfJbpO8Mclr.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/GFZJ6WOXRnpH9NxaIcsninch.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/ojKZ7l0T2M5egR9YHIjVhI0R.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/5DSZkROrbrlYN2PXGfDGedeM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/iFujqkGQJZKBGjpw1kgAkjWe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/mfy0530smBKbptFC5oEIaEyi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/KXwbvKMxbPIfDFd7Eiy0w3nA.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/yQIZsOItt4MrBWuR8Gs1RatV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/S1jCzktWD7XJSRkz4kNYNVM0.png\"}], \"name\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"204794\", \"invariantName\": \"The Witcher 3: Wild Hunt\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/3015/C7oqKI8ckegDhbN4ZvzKkbL6.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/f0gDxISdUwVkHgPuAulWNMF7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0712/TJdORs7iyJT91csQVdw7JawD.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/IW5r8hLVZzf0ApOyiOuRnKUe.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/ZNLQs42V6wLVjXSWVr1lIZjU.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0815/lkDQobVNPwh8PQKLmccBgCul.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/qezXTVn1ExqBjVjR5Ipm97IK.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTW3Xfg51LrGZa3riw7ss1/PREVIEW_SCREENSHOT1_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTwWYvhprSG4ZS0frKN2Z3/PREVIEW_SCREENSHOT2_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT5M5PkgpZqQASi2R1eVYj/PREVIEW_SCREENSHOT3_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTlEaxiV5us5kzpwPbcRmD/PREVIEW_SCREENSHOT5_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTALDIrlRJXdgo0XMj7feB/PREVIEW_SCREENSHOT6_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTAf8dzlbHghZ3OiURBY6r/PREVIEW_SCREENSHOT7_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTH5HqSMnkAu9A77BEAJaB/PREVIEW_SCREENSHOT8_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTmOfbRyxfMHHkh8ziATkX/PREVIEW_SCREENSHOT9_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT2gCDlDVuLKhhHzYx0i6l/PREVIEW_SCREENSHOT10_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1412/5YlA3POEEpaAJsUq3eg6U8d6.png\"}], \"name\": \"The Witcher 3: Wild Hunt\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201624\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA00496_00-FC4GAMEPS4000001\", \"invariantName\": \"Far Cry\\u00ae 4 \", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA00496_00/FREE_CONTENTFhrqenkhhwfgnWQjeQ53/PREVIEW_GAMEPLAY_VIDEO_54899.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTlpIzm82yTvTdwdGPtqAz/PREVIEW_SCREENSHOT1_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTwWvRELkeqHqDRR1EKL2b/PREVIEW_SCREENSHOT2_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTRVNZKWvZqfok5tgmPUbL/PREVIEW_SCREENSHOT3_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTFdMmD7JGH07tnYxLaaX5/PREVIEW_SCREENSHOT4_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTNVH9yitmwynPSQQJ3UVx/PREVIEW_SCREENSHOT5_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTqHTkr1D3fwCHLjwT9g4y/PREVIEW_SCREENSHOT6_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTZp1xxdLpiugdYD7RNpcl/PREVIEW_SCREENSHOT7_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTctokfb7px9MSGML3U7Bv/PREVIEW_SCREENSHOT8_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTtntLWJIsbHmPiDlVZJWo/PREVIEW_SCREENSHOT9_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTbb0upXXLoEmzs0jnoIbn/PREVIEW_SCREENSHOT10_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076px2b27B2ofcw5IzONcQEr6vlx2oSWvfJEutr9o7jAcP9vbVFjtbYjYoX2MOkkuepqwRRkk8Krf08MR2BKeTPw-FyY7.png\"}], \"name\": \"Far Cry\\u00ae 4 \", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201624\", \"invariantName\": \"Far Cry\\u00ae 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA00462_00/3/i_f949708af1851db4e2c353b5ae0f577e3fad30658f8381b0485267663aac769a/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 4\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232910\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA13917_00-FARCRYBOWMORE000\", \"invariantName\": \"Far Cry New Dawn\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTgk0YjFLR6PSEfEmwMhfj/PREVIEW_GAMEPLAY_VIDEO_3_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTy5qV3T2mjK0leCFrnCJJ/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTcKttW4m7XG6LglaCV8ys/PREVIEW_TRAILER_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENT3qNAmCkb6Yl0DlTvq1Zv/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/sNDjQiQyp8AdPs01veCWou82dtgGbkel.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTWdmo5IAfLECuRObM2Hmo/PREVIEW_SCREENSHOT2_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTvVpqmmAFc8kDa7PDLqNs/PREVIEW_SCREENSHOT3_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTpY3FkwH4BCJNR6v870Yy/PREVIEW_SCREENSHOT4_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTaMK6decUAgo79s2CEczj/PREVIEW_SCREENSHOT5_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENThbbHoW4QlYG4pUcCeDaC/PREVIEW_SCREENSHOT6_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENT6ZU66cqxwDUanSMeX7dF/PREVIEW_SCREENSHOT7_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTwGvbDRrrk9B01aa1Ut90/PREVIEW_SCREENSHOT8_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/s2paV3Q5VGXYcup1gmnVzD0rmGWMeyfd.png\"}], \"name\": \"Far Cry New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232910\", \"invariantName\": \"Far Cry\\u00ae New Dawn\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/eeXmyH6hbDDbs9s5H9U8dY7s.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/fHSgavQrGBp2OfmyVPxUnqCT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0ulqqz3BJMI1iJGNeNhWHVcC.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0iWiLD8mzYEu5pOhlwW7TeFK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA13885_00/2/i_26f5de10bfd55ff9d0bbbb6f253ef91fa6cb93dad780eb8a2f002aa3f6e9e5a0/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 44, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzk2Mg\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313:UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"invariantName\": \"The Crew Motorfest | Year 1 Pass\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Season Pass\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/1469ba301ac835323dde04ead8d5bffed5b7127fc5d3d437.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1213/4f1947ca59705da7b87d28418cb023d3ede5a5809514f8e0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/e54f502c99bfe3f7b9cfdee64b6fa4c36e2c583d4915e571.png\"}], \"name\": \"The Crew Motorfest | Year 1 Pass\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"SEASON_PASS\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 17, \"zeroState\": false}]}}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json
index d6cc578..daffca5 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json
@@ -4,7 +4,190 @@
{
"request": {
"method": "GET",
- "uri": "https://m.np.playstation.com/api/graphql/v1/op?extensions=%7B%22persistedQuery%22%3A+%7B%22version%22%3A+1%2C+%22sha256Hash%22%3A+%22a2fbc15433b37ca7bfcd7112f741735e13268f5e9ebd5ffce51b85acc126f41d%22%7D%7D&operationName=metGetContextSearchResults&variables=%7B%22searchTerm%22%3A+%22GTA%22%2C+%22searchContext%22%3A+%22MobileUniversalSearchGame%22%2C+%22displayTitleLocale%22%3A+%22en-US%22%7D",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 302,
+ "message": "Moved Temporarily"
+ },
+ "headers": {
+ "Expires": [
+ "0"
+ ],
+ "X-Psn-Request-Id": [
+ "1ae7cc7928f02789ab2a61513bc95273"
+ ],
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-XSS-Protection": [
+ "1; mode=block"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.9190wJ&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Frame-Options": [
+ "DENY"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:18:03 GMT"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-RequestId": [
+ "1ae7cc7928f02789ab2a61513bc95273"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Length": [
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "X-Psn-Request-Id": [
+ "5d1cf576884c7db9dee4d34258158d02"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:18:03 GMT"
+ ],
+ "Content-Length": [
+ "4010"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "X-RequestId": [
+ "5d1cf576884c7db9dee4d34258158d02"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://m.np.playstation.com/api/graphql/v1/op?extensions=%7B%22persistedQuery%22%3A+%7B%22version%22%3A+1%2C+%22sha256Hash%22%3A+%22a2fbc15433b37ca7bfcd7112f741735e13268f5e9ebd5ffce51b85acc126f41d%22%7D%7D&operationName=metGetContextSearchResults&variables=%7B%22searchTerm%22%3A+%22GTA+5%22%2C+%22searchContext%22%3A+%22MobileUniversalSearchGame%22%2C+%22displayTitleLocale%22%3A+%22en-US%22%7D",
"body": null,
"headers": {
"User-Agent": [
@@ -42,59 +225,59 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
- ],
- "Connection": [
- "keep-alive"
+ "x-content-type-options": [
+ "nosniff"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "x-dns-prefetch-control": [
+ "off"
],
- "content-length": [
- "84597"
+ "Vary": [
+ "Origin",
+ "Accept-Encoding"
],
"strict-transport-security": [
"max-age=15552000; includeSubDomains"
],
+ "x-frame-options": [
+ "SAMEORIGIN"
+ ],
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
"x-xss-protection": [
"1; mode=block"
],
+ "Access-Control-Allow-Credentials": [
+ "true"
+ ],
"Content-Type": [
"application/json"
],
- "Vary": [
- "Origin",
- "Accept-Encoding"
+ "x-download-options": [
+ "noopen"
],
- "Expires": [
- "Sun, 16 Jun 2024 22:59:27 GMT"
+ "Pragma": [
+ "no-cache"
],
- "x-dns-prefetch-control": [
- "off"
+ "Connection": [
+ "keep-alive"
],
"ETag": [
- "W/\"14a76-XYLCoGq9PF+AJYepEx0/Kcj+ciU\""
+ "W/\"165ca-4LX366CcLVAcDlVbnUA7dQH6rx4\""
],
"Date": [
- "Sun, 16 Jun 2024 22:59:27 GMT"
- ],
- "Set-Cookie": "REDACTED",
- "x-content-type-options": [
- "nosniff"
+ "Sun, 12 Jan 2025 00:18:04 GMT"
],
- "x-frame-options": [
- "SAMEORIGIN"
+ "content-length": [
+ "91593"
],
- "x-download-options": [
- "noopen"
+ "Expires": [
+ "Sun, 12 Jan 2025 00:18:04 GMT"
],
- "Access-Control-Allow-Credentials": [
- "true"
- ]
+ "Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6YjRlNWI3ZGUtZGFiNS00Zjc4LTg4OGQtNDc4ZWI0Y2QwMThmLUpzMVI1NjZXLTItMTcxODU2MDgwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioDNjY4\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/6a83ab4f23142d0127b757db899908a239a0f38142fe9c5c.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/59ef2227b8ff75a5d564b914f69a6a6c7ede7f0530d6e2f3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/02308b61e5b4baff808b9049ea380b8edfcd896b1c0266d0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/388c9dfd043c3c9b86593881ec98e965f4b92a5ff9b5d920.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/b9b98c9c4dff78608f3393e3d90dfb5a84aecce1a9ca2a55.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/8ad6967a749c971c1910b94d76dc33cbb0a4c5da84ec5e6d.png\"}], \"name\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 41, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtMTI4Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzU5OA\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}"
+ "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC00NTY\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" \", \"V\", \" (PlayStation\\u00ae\", \"5\", \")\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SAINTSROW00PS5US\", \"invariantName\": \"Saints Row PS4&PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202108/2613/9XObtBG2WzUhBWTnPJfuf3CB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/JcwWbXmuZJvCbxg6xR706VOb.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/1009/Xn02D1OLZr4vCUhZO4W0gGBB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/RdT785TOLSSBaixaWIUYXiiP.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PMHD0rxw31XwGPibnBmLOeLg.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/D7ss2NW3Q44yYvozDrjmmzao.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/3P5y1MOvlTJzVC39Ga8O4Bsn.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/nTpAmY1T11xggfIEaY9cB0uD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/sXFcxF3cFeTLzT6CMx2vEIO2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/uNwTNHcsiFbTBmOLyBJlV4yd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/oBkKJavcyJiJRVnUFhcz3NJc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PQLu1uL387j8p4FZjpuFconi.png\"}], \"name\": \"Saints Row PS4&PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002042\", \"invariantName\": \"Saints Row\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202108/2613/9XObtBG2WzUhBWTnPJfuf3CB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/oAe5dCWAQ223VWKfMBBbkX8B.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PMHD0rxw31XwGPibnBmLOeLg.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/D7ss2NW3Q44yYvozDrjmmzao.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/3P5y1MOvlTJzVC39Ga8O4Bsn.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/nTpAmY1T11xggfIEaY9cB0uD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/sXFcxF3cFeTLzT6CMx2vEIO2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/uNwTNHcsiFbTBmOLyBJlV4yd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/oBkKJavcyJiJRVnUFhcz3NJc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PQLu1uL387j8p4FZjpuFconi.png\"}], \"name\": \"Saints Row\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"Far Cry\\u00ae \", \"5\"]}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10001130\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0002-PPSA01649_00-CODBO6CROSSGEN01\", \"invariantName\": \"Call of Duty\\u00ae: Black Ops 6 - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1420/2d41634f4422a1ec4016b80835415e52d808903d7a014cc0.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/2018/db0f69969cf515a6bf304273066d4f2639f98ae90fe8c9b2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/46be078742eef20a38e4a8e8f23e1107310597c2fc6df8cf.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/8a16010834ed7ffdb570a32f7ec89c8c40e60cce4041e16d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/5835d2a5053e7aff667230c26c9a03ee06fc1a50ec372a54.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/e591f3f0ea1863fd40039a3c3a80e72b7119e2c6df76fe19.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/0119/a183a78e406f9b6b891bc7de8577019699e85c91721ed896.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/393ff993a7c101feff9e1e6442bea0dda6c3f0128714a302.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/14d8385d59e614e0e5fea8fa5e140aa96a46622d7f836a7a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/2819b5df32c19b4b9e972dc3281b474937bb2570312b38a2.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/05a08ddb076656e71324f6d578bdbaa16c8925ab01dc3046.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/7d2e8ac872e44a6d8cb0ae5a7170b6b3eb5a21f20c374886.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/b39b0874faf0447a3a921852545c9668ac332fe173602a10.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/4b45cf4b319a65e05f6e4f87a22c7b91d2e7e8aeb247b61f.png\"}], \"name\": \"Call of Duty\\u00ae: Black Ops 6 - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10001130\", \"invariantName\": \"Call of Duty\\u00ae\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1323/9ab4bb8d7024377cc5d78edfd270b4e5b77b127c1e32374a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1420/2d41634f4422a1ec4016b80835415e52d808903d7a014cc0.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/2018/db0f69969cf515a6bf304273066d4f2639f98ae90fe8c9b2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/46be078742eef20a38e4a8e8f23e1107310597c2fc6df8cf.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/3de9599e0c0ddd48dd9064c9a763ad48b49a593a7a3e46ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/8a16010834ed7ffdb570a32f7ec89c8c40e60cce4041e16d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/5835d2a5053e7aff667230c26c9a03ee06fc1a50ec372a54.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/e591f3f0ea1863fd40039a3c3a80e72b7119e2c6df76fe19.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/0119/a183a78e406f9b6b891bc7de8577019699e85c91721ed896.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\"}], \"name\": \"Call of Duty\\u00ae\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"The Elder Scrolls \", \"V\", \": Skyrim Special Edition\"]}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 64, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzQyNQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10001137:UP0638-PPSA01797_00-FNAFSBCHOWDATIME\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0638-PPSA01797_00-FNAFSBCHOWDATIME\", \"invariantName\": \"Five Nights at Freddy's: Security Breach - Ruin\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Level\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202307/1719/1b1015425f6836420ee79442c6bbfce4df1d059cd1a9783e.mp4\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/353cfc4852b01c7089cc474e676becaf7ddbe3fc709e902a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/78ac528e6683705e65cb0f65bf73a7dbfc87dcee6b6a430b.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/341ba74b9bc272741be69e9d86cb0d5f5af13672cff3566b.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/49fdb02c09bb8a451f8201c19bb06c3e267ac41912356aab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/4a93b4a12a4315bd200e16761e33723ddcd1db245b248351.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/7b1a0828f7a435c299a0be93251cae32e9e8edee65dfb7b3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/3dfa2f4478719ceda3c0835f9bc0a6d0f228bdc253cc797a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/33705d2ef2d8c503eeaeab2316cde8667e6b8ec8789f8f49.png\"}], \"name\": \"Five Nights at Freddy's: Security Breach - Ruin\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"LEVEL\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000007SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000007SIEA\", \"invariantName\": \"Saints Row: SteelSeries\\u00a9 FREE Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1513/rOsrcc4cmGAr07cX75SMpvmS.png\"}], \"name\": \"Saints Row: SteelSeries\\u00a9 FREE Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-WHICHDLC0000SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-WHICHDLC0000SIEA\", \"invariantName\": \"Front to Back Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2013/TeNitMAGGEZ0RMQVzqQjryqo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2013/Ds5YWB2RmJhFkK93QHgX1uLE.png\"}], \"name\": \"Front to Back Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000010SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000010SIEA\", \"invariantName\": \"Hexy Halloween Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2720/48e2b942fab342c9bb4171fe10fe029065eec1fa48bc4f49.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2720/0682500f5045c9d4ad9d58843d0c2f1ab6ad90f9044b376f.png\"}], \"name\": \"Hexy Halloween Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000009SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000009SIEA\", \"invariantName\": \"Dead Island 2 FREE Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0713/f82bd91881a7b2597f850e3c11678b80cf16ca0c83734580.png\"}], \"name\": \"Dead Island 2 FREE Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 95, \"zeroState\": false}]}}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json
index 47d162a..3c0668d 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json
@@ -1,6 +1,189 @@
{
"version": 1,
"interactions": [
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 302,
+ "message": "Moved Temporarily"
+ },
+ "headers": {
+ "X-XSS-Protection": [
+ "1; mode=block"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.TcTNgB&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:16:03 GMT"
+ ],
+ "Expires": [
+ "0"
+ ],
+ "Set-Cookie": "REDACTED",
+ "X-Frame-Options": [
+ "DENY"
+ ],
+ "X-RequestId": [
+ "954ec06c7434da17734cb39e07dd0d41"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Psn-Request-Id": [
+ "954ec06c7434da17734cb39e07dd0d41"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Length": [
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 00:16:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "X-RequestId": [
+ "924dc22606ca7e46dfc70619fbf07f9b"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Psn-Request-Id": [
+ "924dc22606ca7e46dfc70619fbf07f9b"
+ ],
+ "Content-Length": [
+ "4010"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
+ }
+ }
+ },
{
"request": {
"method": "GET",
@@ -42,59 +225,59 @@
"message": "OK"
},
"headers": {
+ "Access-Control-Allow-Credentials": [
+ "true"
+ ],
+ "x-frame-options": [
+ "SAMEORIGIN"
+ ],
+ "x-xss-protection": [
+ "1; mode=block"
+ ],
"Pragma": [
"no-cache"
],
"Connection": [
"keep-alive"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
- ],
- "content-length": [
- "84600"
+ "Content-Type": [
+ "application/json"
],
- "strict-transport-security": [
- "max-age=15552000; includeSubDomains"
+ "x-content-type-options": [
+ "nosniff"
],
- "x-xss-protection": [
- "1; mode=block"
+ "x-download-options": [
+ "noopen"
],
- "Content-Type": [
- "application/json"
+ "ETag": [
+ "W/\"2a296-s+qp0jFTh6JPEfkLYtcJqCz5h8s\""
],
"Vary": [
"Origin",
"Accept-Encoding"
],
- "Expires": [
- "Sun, 16 Jun 2024 22:59:26 GMT"
- ],
- "x-dns-prefetch-control": [
- "off"
+ "strict-transport-security": [
+ "max-age=15552000; includeSubDomains"
],
- "ETag": [
- "W/\"14a79-FTM5OvqynnctIWsZHe6ypDmRN78\""
+ "Expires": [
+ "Sun, 12 Jan 2025 00:16:04 GMT"
],
"Date": [
- "Sun, 16 Jun 2024 22:59:26 GMT"
+ "Sun, 12 Jan 2025 00:16:04 GMT"
],
"Set-Cookie": "REDACTED",
- "x-content-type-options": [
- "nosniff"
- ],
- "x-frame-options": [
- "SAMEORIGIN"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
],
- "x-download-options": [
- "noopen"
+ "x-dns-prefetch-control": [
+ "off"
],
- "Access-Control-Allow-Credentials": [
- "true"
+ "content-length": [
+ "81312"
]
},
"body": {
- "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6YjRlNWI3ZGUtZGFiNS00Zjc4LTg4OGQtNDc4ZWI0Y2QwMThmLUpzMVI1NjZXLTItMTcxODU2MDgwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioELTkwOQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/6a83ab4f23142d0127b757db899908a239a0f38142fe9c5c.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/59ef2227b8ff75a5d564b914f69a6a6c7ede7f0530d6e2f3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/02308b61e5b4baff808b9049ea380b8edfcd896b1c0266d0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/388c9dfd043c3c9b86593881ec98e965f4b92a5ff9b5d920.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/b9b98c9c4dff78608f3393e3d90dfb5a84aecce1a9ca2a55.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/8ad6967a749c971c1910b94d76dc33cbb0a4c5da84ec5e6d.png\"}], \"name\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 41, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtMTI4Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0zNzk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}"
+ "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0xMzE\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"200477\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03507_00-SLUS212690000001\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0802/ec072c1cd3b72838476a53056a923771bc16d08c43d68d3c.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"200477\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2015/66870e3605f0a6f04df0463486470874ac25b9acd600d8d8.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"231844\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0082-CUSA10938_00-DEFINITIVE00SIEA\", \"invariantName\": \"Shadow of the Tomb Raider Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307dK21b0mNOkOhnHW3lKVRuib4EaNWuCmXtt0wMdKVAlE7sYUbD6YOcpgSFImpnxjg--_1p1RgWHadbDnNHpRhzMf28SD.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yguQQ6t1hWTw0aaf_7mI7PLV0nuWRTzhfCFd9HG2abU6IHxZhrfzdlQcpK6lSyaBn9BTv3t_KcD_KgX-H3BNTcbKk0j.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307obn0reFe1U4gMc6b1pGe29vUWBAwdA8-rwjTkBN9iSwdc4rU6hpu5QI4ZXkrja75v0RAOXR1bNsTAg1jbb-3AgvCc1Y.png\"}], \"name\": \"Shadow of the Tomb Raider Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"231844\", \"invariantName\": \"Shadow of the Tomb Raider\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10872_00/6/i_bf48f37e880368d90e7d619b254088edb96086a63ce0554a1c227701e6e5f357/i/icon0.png\"}], \"name\": \"Shadow of the Tomb Raider\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"204794\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03972_00-00000000000GOTY7\", \"invariantName\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202301/2800/iVue7C5G9BCBeiREDJTxjqch.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/hfxDHG9zRcCC7JcviyqgqGUc.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/9uU0gBq02jmXHtDsm82AV722.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/3w3HeyHIT2CKQYS2ODdCwl3j.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0807/IqM9JK6MTlSfKFfJbpO8Mclr.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/GFZJ6WOXRnpH9NxaIcsninch.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/ojKZ7l0T2M5egR9YHIjVhI0R.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/5DSZkROrbrlYN2PXGfDGedeM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/iFujqkGQJZKBGjpw1kgAkjWe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/mfy0530smBKbptFC5oEIaEyi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/KXwbvKMxbPIfDFd7Eiy0w3nA.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/yQIZsOItt4MrBWuR8Gs1RatV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/S1jCzktWD7XJSRkz4kNYNVM0.png\"}], \"name\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"204794\", \"invariantName\": \"The Witcher 3: Wild Hunt\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/3015/C7oqKI8ckegDhbN4ZvzKkbL6.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/f0gDxISdUwVkHgPuAulWNMF7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0712/TJdORs7iyJT91csQVdw7JawD.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/IW5r8hLVZzf0ApOyiOuRnKUe.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/ZNLQs42V6wLVjXSWVr1lIZjU.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0815/lkDQobVNPwh8PQKLmccBgCul.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/qezXTVn1ExqBjVjR5Ipm97IK.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTW3Xfg51LrGZa3riw7ss1/PREVIEW_SCREENSHOT1_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTwWYvhprSG4ZS0frKN2Z3/PREVIEW_SCREENSHOT2_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT5M5PkgpZqQASi2R1eVYj/PREVIEW_SCREENSHOT3_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTlEaxiV5us5kzpwPbcRmD/PREVIEW_SCREENSHOT5_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTALDIrlRJXdgo0XMj7feB/PREVIEW_SCREENSHOT6_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTAf8dzlbHghZ3OiURBY6r/PREVIEW_SCREENSHOT7_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTH5HqSMnkAu9A77BEAJaB/PREVIEW_SCREENSHOT8_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTmOfbRyxfMHHkh8ziATkX/PREVIEW_SCREENSHOT9_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT2gCDlDVuLKhhHzYx0i6l/PREVIEW_SCREENSHOT10_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1412/5YlA3POEEpaAJsUq3eg6U8d6.png\"}], \"name\": \"The Witcher 3: Wild Hunt\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201624\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA00496_00-FC4GAMEPS4000001\", \"invariantName\": \"Far Cry\\u00ae 4 \", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA00496_00/FREE_CONTENTFhrqenkhhwfgnWQjeQ53/PREVIEW_GAMEPLAY_VIDEO_54899.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTlpIzm82yTvTdwdGPtqAz/PREVIEW_SCREENSHOT1_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTwWvRELkeqHqDRR1EKL2b/PREVIEW_SCREENSHOT2_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTRVNZKWvZqfok5tgmPUbL/PREVIEW_SCREENSHOT3_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTFdMmD7JGH07tnYxLaaX5/PREVIEW_SCREENSHOT4_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTNVH9yitmwynPSQQJ3UVx/PREVIEW_SCREENSHOT5_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTqHTkr1D3fwCHLjwT9g4y/PREVIEW_SCREENSHOT6_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTZp1xxdLpiugdYD7RNpcl/PREVIEW_SCREENSHOT7_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTctokfb7px9MSGML3U7Bv/PREVIEW_SCREENSHOT8_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTtntLWJIsbHmPiDlVZJWo/PREVIEW_SCREENSHOT9_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTbb0upXXLoEmzs0jnoIbn/PREVIEW_SCREENSHOT10_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076px2b27B2ofcw5IzONcQEr6vlx2oSWvfJEutr9o7jAcP9vbVFjtbYjYoX2MOkkuepqwRRkk8Krf08MR2BKeTPw-FyY7.png\"}], \"name\": \"Far Cry\\u00ae 4 \", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201624\", \"invariantName\": \"Far Cry\\u00ae 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA00462_00/3/i_f949708af1851db4e2c353b5ae0f577e3fad30658f8381b0485267663aac769a/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 4\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232910\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA13917_00-FARCRYBOWMORE000\", \"invariantName\": \"Far Cry New Dawn\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTgk0YjFLR6PSEfEmwMhfj/PREVIEW_GAMEPLAY_VIDEO_3_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTy5qV3T2mjK0leCFrnCJJ/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTcKttW4m7XG6LglaCV8ys/PREVIEW_TRAILER_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENT3qNAmCkb6Yl0DlTvq1Zv/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/sNDjQiQyp8AdPs01veCWou82dtgGbkel.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTWdmo5IAfLECuRObM2Hmo/PREVIEW_SCREENSHOT2_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTvVpqmmAFc8kDa7PDLqNs/PREVIEW_SCREENSHOT3_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTpY3FkwH4BCJNR6v870Yy/PREVIEW_SCREENSHOT4_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTaMK6decUAgo79s2CEczj/PREVIEW_SCREENSHOT5_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENThbbHoW4QlYG4pUcCeDaC/PREVIEW_SCREENSHOT6_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENT6ZU66cqxwDUanSMeX7dF/PREVIEW_SCREENSHOT7_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTwGvbDRrrk9B01aa1Ut90/PREVIEW_SCREENSHOT8_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/s2paV3Q5VGXYcup1gmnVzD0rmGWMeyfd.png\"}], \"name\": \"Far Cry New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232910\", \"invariantName\": \"Far Cry\\u00ae New Dawn\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/eeXmyH6hbDDbs9s5H9U8dY7s.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/fHSgavQrGBp2OfmyVPxUnqCT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0ulqqz3BJMI1iJGNeNhWHVcC.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0iWiLD8mzYEu5pOhlwW7TeFK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA13885_00/2/i_26f5de10bfd55ff9d0bbbb6f253ef91fa6cb93dad780eb8a2f002aa3f6e9e5a0/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 44, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0yMjk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313:UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"invariantName\": \"The Crew Motorfest | Year 1 Pass\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Season Pass\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/1469ba301ac835323dde04ead8d5bffed5b7127fc5d3d437.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1213/4f1947ca59705da7b87d28418cb023d3ede5a5809514f8e0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/e54f502c99bfe3f7b9cfdee64b6fa4c36e2c583d4915e571.png\"}], \"name\": \"The Crew Motorfest | Year 1 Pass\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"SEASON_PASS\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 17, \"zeroState\": false}]}}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json
index 821a7bb..18d9993 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json
@@ -36,37 +36,37 @@
"message": "No Content"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Connection": [
- "keep-alive"
- ],
"Cache-Control": [
"private"
],
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:41 GMT"
+ ],
"Server": [
"Apache"
],
- "Date": [
- "Sat, 13 Jul 2024 07:42:44 GMT"
- ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
"X-Psn-Track-Id": [
- "0014440219577960558"
- ]
+ "0772320178847275269"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": ""
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json
index 37a132b..15aad53 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json
@@ -33,26 +33,14 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "101"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:41 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,19 +48,31 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:31 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0187696571875286143"
+ "Content-Length": [
+ "101"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0287059861605998375"
]
},
"body": {
- "string": "{\"friendRelation\": \"no-friend\", \"personalDetailSharing\": \"none\", \"friendsCount\": 0, \"mutualFriendsCount\": 0}"
+ "string": "{\"friendRelation\": \"requested\", \"personalDetailSharing\": \"none\", \"friendsCount\": 0, \"mutualFriendsCount\": 0}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json
index 3eacf9f..efba0a3 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json
@@ -33,26 +33,14 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "33"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:42 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,15 +48,27 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:31 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0647920240064036296"
+ "Content-Length": [
+ "33"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0164141993484115919"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json
index 1beb52a..2789885 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json
@@ -33,26 +33,14 @@
"message": "Forbidden"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "123"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:42 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,19 +48,31 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:31 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0741914372738003208"
+ "Content-Length": [
+ "123"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0570246400987643638"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"177798d2-2c34-11ef-a77e-9ff7b346a20f\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}"
+ "string": "{\"error\": {\"referenceId\": \"ecfeb563-d093-11ef-9c6c-759277bf2dbc\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json
index e23924a..eb86abb 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json
@@ -33,26 +33,14 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "97"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:40 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,15 +48,27 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:30 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0817757008443281123"
+ "Content-Length": [
+ "97"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0282246765665200564"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json
index b717fa5..585791f 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json
@@ -33,26 +33,14 @@
"message": "Forbidden"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "123"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:41 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,19 +48,31 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:30 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0576731203570091827"
+ "Content-Length": [
+ "123"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0548964453661501640"
]
},
"body": {
- "string": "{\"error\": {\"referenceId\": \"16ec9664-2c34-11ef-a1e1-fd622ac0dc56\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}"
+ "string": "{\"error\": {\"referenceId\": \"ec128001-d093-11ef-a693-91eb877f80a5\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json
index 6566e4a..0927843 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json
@@ -33,39 +33,36 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"no-store"
],
- "content-length": [
- "77"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:39 GMT"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, OPTIONS"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:29 GMT"
+ "Content-Length": [
+ "77"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
@@ -105,26 +102,14 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "606"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:39 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -132,15 +117,27 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:30 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0845301707383283354"
+ "Content-Length": [
+ "606"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0998905755951815617"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json
new file mode 100644
index 0000000..306de76
--- /dev/null
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json
@@ -0,0 +1,326 @@
+{
+ "version": 1,
+ "interactions": [
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Requested-With": [
+ "com.scee.psxandroid"
+ ],
+ "Sec-Fetch-Dest": [
+ "document"
+ ],
+ "Sec-Fetch-Mode": [
+ "navigate"
+ ],
+ "Sec-Fetch-Site": [
+ "same-site"
+ ],
+ "Sec-Fetch-User": [
+ "?1"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 302,
+ "message": "Moved Temporarily"
+ },
+ "headers": {
+ "X-RequestId": [
+ "2afb8659d19bcd1291b3051c5b5f852b"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Set-Cookie": "REDACTED",
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Psn-Request-Id": [
+ "2afb8659d19bcd1291b3051c5b5f852b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000 ; includeSubDomains"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "Location": [
+ "com.scee.psxandroid.scecompcall://redirect/?code=v3.tHgMdp&cid=00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:02 GMT"
+ ],
+ "Cache-Control": [
+ "no-cache, no-store, max-age=0, must-revalidate"
+ ],
+ "X-Frame-Options": [
+ "DENY"
+ ],
+ "Expires": [
+ "0"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-XSS-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "body": {
+ "string": ""
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "POST",
+ "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token",
+ "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt",
+ "headers": {
+ "User-Agent": [
+ "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Content-Length": [
+ "207"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "X-RequestId": [
+ "8a5c3037b64d114b2af89ac48d0e2a47"
+ ],
+ "X-CorrelationId": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json;charset=UTF-8"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "X-Psn-Request-Id": [
+ "8a5c3037b64d114b2af89ac48d0e2a47"
+ ],
+ "Server": [
+ "nginx"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:03 GMT"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Content-Length": [
+ "4010"
+ ],
+ "X-Psn-Correlation-Id": [
+ "00000000-0000-0000-0000-b025aa3b2674"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec_Trading/profile2?fields=accountId%2ConlineId%2CcurrentOnlineId",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, OPTIONS"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:03 GMT"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Content-Length": [
+ "77"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"profile\": {\"onlineId\": \"VaultTec_Trading\", \"accountId\": \"8520698476712646544\"}}"
+ }
+ }
+ },
+ {
+ "request": {
+ "method": "GET",
+ "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec_Trading/profile2?fields=npId%2ConlineId%2CaccountId%2CavatarUrls%2Cplus%2CaboutMe%2ClanguagesUsed%2CtrophySummary%28%40default%2Clevel%2Cprogress%2CearnedTrophies%29%2CisOfficiallyVerified%2CpersonalDetail%28%40default%2CprofilePictureUrls%29%2CpersonalDetailSharing%2CpersonalDetailSharingRequestMessageFlag%2CprimaryOnlineStatus%2Cpresences%28%40default%2C%40titleInfo%2Cplatform%2ClastOnlineDate%2ChasBroadcastData%29%2CrequestMessageFlag%2Cblocking%2CfriendRelation%2Cfollowing%2CconsoleAvailability",
+ "body": null,
+ "headers": {
+ "User-Agent": [
+ "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36"
+ ],
+ "Accept-Encoding": [
+ "gzip, deflate"
+ ],
+ "Accept": [
+ "*/*"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Accept-Language": [
+ "en-US,en;q=0.9"
+ ],
+ "Country": [
+ "US"
+ ]
+ }
+ },
+ "response": {
+ "status": {
+ "code": 200,
+ "message": "OK"
+ },
+ "headers": {
+ "Access-Control-Allow-Methods": [
+ "GET, PUT, POST, DELETE, OPTIONS"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Server": [
+ "Apache"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:23:03 GMT"
+ ],
+ "Cache-Control": [
+ "no-store"
+ ],
+ "Content-Length": [
+ "617"
+ ],
+ "Set-Cookie": "REDACTED"
+ },
+ "body": {
+ "string": "{\"profile\": {\"onlineId\": \"VaultTec_Trading\", \"accountId\": \"8520698476712646544\", \"npId\": \"VmF1bHRUZWNfVHJhZGluZ0BiNi51cw==\", \"avatarUrls\": [{\"size\": \"l\", \"avatarUrl\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}], \"plus\": 0, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"languagesUsed\": [\"en\"], \"trophySummary\": {\"level\": 1, \"progress\": 0, \"earnedTrophies\": {\"platinum\": 0, \"gold\": 0, \"silver\": 0, \"bronze\": 0}}, \"isOfficiallyVerified\": false, \"personalDetailSharing\": \"no\", \"personalDetailSharingRequestMessageFlag\": false, \"friendRelation\": \"no\", \"requestMessageFlag\": false, \"blocking\": false, \"following\": false}}"
+ }
+ }
+ }
+ ]
+}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json
index 983c9c7..f5b273b 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json
@@ -33,26 +33,14 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"private"
],
- "Content-Length": [
- "16"
- ],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:42 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
@@ -60,15 +48,27 @@
"Content-Type": [
"application/json"
],
+ "Connection": [
+ "keep-alive"
+ ],
"Set-Cookie": "REDACTED",
- "Date": [
- "Sun, 16 Jun 2024 22:59:31 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
],
- "X-Psn-Track-Id": [
- "0420393315428615276"
+ "Content-Length": [
+ "16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Access-Control-Allow-Origin": [
"*"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "X-Psn-Track-Id": [
+ "0973694289627913206"
]
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json
index 32a0485..05d48c1 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json
@@ -33,39 +33,36 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"no-store"
],
- "content-length": [
- "105"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:38 GMT"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, OPTIONS"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
- "Date": [
- "Sun, 16 Jun 2024 22:59:28 GMT"
+ "Content-Length": [
+ "105"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json
index 112c423..74cf40f 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json
@@ -36,37 +36,37 @@
"message": "No Content"
},
"headers": {
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Connection": [
- "keep-alive"
- ],
"Cache-Control": [
"private"
],
+ "Date": [
+ "Sun, 12 Jan 2025 03:18:42 GMT"
+ ],
"Server": [
"Apache"
],
- "Date": [
- "Sat, 13 Jul 2024 07:42:44 GMT"
- ],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, PATCH"
],
+ "Connection": [
+ "keep-alive"
+ ],
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "Set-Cookie": "REDACTED",
"X-Psn-Track-Id": [
- "0380588015907686754"
- ]
+ "0721827968730858957"
+ ],
+ "Set-Cookie": "REDACTED"
},
"body": {
"string": ""
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json
index 0b1e87c..992d8f9 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json
@@ -33,51 +33,51 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:09 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive"
],
"X-Psn-Request-Id": [
- "53a3c1c8-83f5-1031-ad5f-e294c563f466"
+ "83f775ad-94d1-1031-a2e5-5826db577e13"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "53a3c1c8-83f5-1031-ad5e-e294c563f466"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "83f775ad-94d1-1031-a2e4-5826db577e13"
],
"Content-Length": [
"69"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:09 GMT"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:00 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:00 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json
index 4863dfb..66cb2ae 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json
@@ -33,39 +33,36 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"no-store"
],
- "content-length": [
- "69"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:15 GMT"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, OPTIONS"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:05 GMT"
+ "Content-Length": [
+ "69"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
@@ -105,55 +102,55 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:16 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive"
],
"X-Psn-Request-Id": [
- "c55b7cae-83f4-1031-af4b-d226387132ff"
+ "eb6798bf-94bd-1031-8f73-26b3a4ed2a6d"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "c55b7cae-83f4-1031-af4a-d226387132ff"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "eb6798bf-94bd-1031-8f72-26b3a4ed2a6d"
],
"Content-Length": [
- "51489"
+ "49479"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:16 GMT"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:06 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:06 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 70, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-06-15T15:07:56.880000Z\", \"playDuration\": \"PT156H42S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2023-12-23T09:49:57.000000Z\", \"playDuration\": \"PT12H15M53S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}], \"nextOffset\": 10, \"previousOffset\": 0, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 111, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"419\", \"language\": \"es\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T13:45:37.610000Z\", \"playDuration\": \"PT213H54M25S\"}, {\"titleId\": \"CUSA03105_00\", \"name\": \"GOD EATER RESURRECTION\", \"localizedName\": \"GOD EATER RESURRECTION\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 201731, \"titleIds\": [\"CUSA03105_00\", \"CUSA03369_00\", \"CUSA03703_00\", \"CUSA03525_00\", \"CUSA03409_00\", \"CUSA03592_00\", \"PCSB00875_00\"], \"name\": \"GOD EATER RESURRECTION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GOD EATER RESURRECTION\", \"uk-UA\": \"GOD EATER RESURRECTION\", \"de-DE\": \"GOD EATER RESURRECTION\", \"en-US\": \"GOD EATER RESURRECTION\", \"ko-KR\": \"GOD EATER RESURRECTION\", \"pt-BR\": \"GOD EATER RESURRECTION\", \"es-ES\": \"GOD EATER RESURRECTION\", \"ar-AE\": \"GOD EATER RESURRECTION\", \"no-NO\": \"GOD EATER RESURRECTION\", \"fr-CA\": \"GOD EATER RESURRECTION\", \"it-IT\": \"GOD EATER RESURRECTION\", \"pl-PL\": \"GOD EATER RESURRECTION\", \"ru-RU\": \"GOD EATER RESURRECTION\", \"zh-Hans\": \"GOD EATER RESURRECTION\", \"nl-NL\": \"GOD EATER RESURRECTION\", \"pt-PT\": \"GOD EATER RESURRECTION\", \"zh-Hant\": \"GOD EATER RESURRECTION\", \"sv-SE\": \"GOD EATER RESURRECTION\", \"da-DK\": \"GOD EATER RESURRECTION\", \"tr-TR\": \"GOD EATER RESURRECTION\", \"fr-FR\": \"GOD EATER RESURRECTION\", \"en-GB\": \"GOD EATER RESURRECTION\", \"es-419\": \"GOD EATER RESURRECTION\", \"ja-JP\": \"GOD EATER RESURRECTION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2016-06-23T12:56:47.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T12:27:25.460000Z\", \"playDuration\": \"PT6H27M47S\"}, {\"titleId\": \"PPSA20676_00\", \"name\": \"VALORANT\", \"localizedName\": \"VALORANT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10010048, \"titleIds\": [\"PPSA20676_00\", \"PPSA20711_00\"], \"name\": \"VALORANT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"VALORANT\", \"uk-UA\": \"VALORANT\", \"de-DE\": \"VALORANT\", \"en-US\": \"VALORANT\", \"ko-KR\": \"\\ubc1c\\ub85c\\ub780\\ud2b8\", \"pt-BR\": \"VALORANT\", \"es-ES\": \"VALORANT\", \"ar-AE\": \"VALORANT\", \"no-NO\": \"VALORANT\", \"fr-CA\": \"VALORANT\", \"it-IT\": \"VALORANT\", \"pl-PL\": \"VALORANT\", \"ru-RU\": \"VALORANT\", \"zh-Hans\": \"VALORANT\", \"nl-NL\": \"VALORANT\", \"pt-PT\": \"VALORANT\", \"zh-Hant\": \"\\u300a\\u7279\\u6230\\u82f1\\u8c6a\\u300b\", \"sv-SE\": \"VALORANT\", \"da-DK\": \"VALORANT\", \"tr-TR\": \"VALORANT\", \"fr-FR\": \"VALORANT\", \"en-GB\": \"VALORANT\", \"es-419\": \"VALORANT\", \"ja-JP\": \"VALORANT\"}}, \"country\": \"AE\", \"language\": \"ar\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2024-09-10T10:01:08.080000Z\", \"lastPlayedDateTime\": \"2024-09-10T10:27:07.390000Z\", \"playDuration\": \"PT25M34S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 21, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2024-09-08T14:01:17.230000Z\", \"playDuration\": \"PT14H51M10S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}], \"nextOffset\": 10, \"previousOffset\": 0, \"totalItemCount\": 13573}"
}
}
},
@@ -189,39 +186,36 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"no-store"
],
- "content-length": [
- "69"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:16 GMT"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, OPTIONS"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:07 GMT"
+ "Content-Length": [
+ "69"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
@@ -261,55 +255,55 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:17 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive"
],
"X-Psn-Request-Id": [
- "5c886d3f-83e8-1031-8258-7d62a28d774d"
+ "dfae96e4-9482-1031-95bd-41b5d045ae07"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "5c886d3f-83e8-1031-8257-7d62a28d774d"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "dfae96e4-9482-1031-95bc-41b5d045ae07"
],
"Content-Length": [
- "5054"
+ "6622"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:17 GMT"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:08 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:08 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}], \"nextOffset\": 10, \"previousOffset\": 8, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}], \"nextOffset\": 10, \"previousOffset\": 8, \"totalItemCount\": 13573}"
}
}
}
diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json
index f65fbce..0cc3a21 100644
--- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json
+++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json
@@ -33,39 +33,36 @@
"message": "OK"
},
"headers": {
- "Connection": [
- "keep-alive"
- ],
- "Server": [
- "Apache"
- ],
"Cache-Control": [
"no-store"
],
- "content-length": [
- "69"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:10 GMT"
],
- "Access-Control-Allow-Headers": [
- "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
+ "Server": [
+ "Apache"
],
"Access-Control-Allow-Methods": [
"GET, PUT, POST, DELETE, OPTIONS"
],
- "Content-Type": [
- "application/json"
+ "Connection": [
+ "keep-alive"
],
- "Vary": [
- "accept-encoding"
+ "Access-Control-Allow-Headers": [
+ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:00 GMT"
+ "Content-Length": [
+ "69"
],
"Access-Control-Allow-Origin": [
"*"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
"Set-Cookie": "REDACTED"
},
"body": {
@@ -105,56 +102,56 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:10 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive",
"Transfer-Encoding"
],
"X-Psn-Request-Id": [
- "531c1665-83eb-1031-8277-b8ac32dd201e"
+ "da95b6a8-94be-1031-9bd9-617a1cefea14"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "531c1665-83eb-1031-8276-b8ac32dd201e"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "da95b6a8-94be-1031-9bd8-617a1cefea14"
],
"Transfer-Encoding": [
"chunked"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:10 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:00 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:00 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 70, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-06-15T15:07:56.880000Z\", \"playDuration\": \"PT156H42S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2023-12-23T09:49:57.000000Z\", \"playDuration\": \"PT12H15M53S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}, {\"titleId\": \"PPSA01762_00\", \"name\": \"DMM.com\", \"localizedName\": \"DMM.com\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"category\": \"ps5_web_based_media_app\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201149, \"titleIds\": [\"CUSA03302_00\", \"PPSA01762_00\"], \"name\": \"DMM.com\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"DMM.com\", \"en-GB\": \"DMM.com\", \"ja-JP\": \"DMM.com\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-12T08:40:04.430000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:00:22.410000Z\", \"playDuration\": \"PT2H20M16S\"}, {\"titleId\": \"CUSA45152_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:54:43.420000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:58:27.450000Z\", \"playDuration\": \"PT3M40S\"}, {\"titleId\": \"CUSA45153_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:48:11.890000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:54:39.250000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA45151_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:42:13.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:48:07.660000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA45150_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:25:05.410000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:42:03.850000Z\", \"playDuration\": \"PT14M30S\"}, {\"titleId\": \"PPSA16765_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:07:31.450000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:22:57.240000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"CUSA43664_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T12:15:00.950000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:07:29.390000Z\", \"playDuration\": \"PT50M18S\"}, {\"titleId\": \"PPSA15830_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:55:32.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T12:14:45.710000Z\", \"playDuration\": \"PT19M\"}, {\"titleId\": \"PPSA15831_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:22:36.780000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:55:30.700000Z\", \"playDuration\": \"PT20M8S\"}, {\"titleId\": \"CUSA42782_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:01:42.610000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:22:34.580000Z\", \"playDuration\": \"PT20M39S\"}, {\"titleId\": \"CUSA42783_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T10:32:05.580000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:01:40.330000Z\", \"playDuration\": \"PT27M20S\"}, {\"titleId\": \"PPSA12613_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:41:02.220000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:42:05.560000Z\", \"playDuration\": \"PT52S\"}, {\"titleId\": \"PPSA12614_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:40:00.840000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:41:00.100000Z\", \"playDuration\": \"PT55S\"}, {\"titleId\": \"CUSA39570_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:38:40.540000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:39:58.360000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA39571_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:37:25.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:38:38.400000Z\", \"playDuration\": \"PT1M8S\"}, {\"titleId\": \"CUSA45034_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T05:09:26.150000Z\", \"lastPlayedDateTime\": \"2023-10-05T07:10:00.800000Z\", \"playDuration\": \"PT1H5M28S\"}, {\"titleId\": \"PPSA16081_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:50:13.440000Z\", \"lastPlayedDateTime\": \"2023-10-05T05:08:19.190000Z\", \"playDuration\": \"PT17M51S\"}, {\"titleId\": \"PPSA16083_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:29:52.000000Z\", \"lastPlayedDateTime\": \"2023-10-05T04:50:11.360000Z\", \"playDuration\": \"PT19M44S\"}, {\"titleId\": \"PPSA16084_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:27:07.930000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:44:43.530000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"PPSA16082_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:09:47.200000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:26:59.360000Z\", \"playDuration\": \"PT17M\"}, {\"titleId\": \"CUSA42988_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:38:02.180000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:06:41.280000Z\", \"playDuration\": \"PT28M21S\"}, {\"titleId\": \"CUSA42990_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:19:45.350000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:37:35.780000Z\", \"playDuration\": \"PT17M9S\"}, {\"titleId\": \"CUSA42991_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:00:11.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:19:30.010000Z\", \"playDuration\": \"PT18M29S\"}, {\"titleId\": \"CUSA42989_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T06:49:30.790000Z\", \"lastPlayedDateTime\": \"2023-10-04T07:14:37.790000Z\", \"playDuration\": \"PT24M39S\"}, {\"titleId\": \"CUSA45248_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T05:39:23.710000Z\", \"lastPlayedDateTime\": \"2023-10-04T06:24:46.440000Z\", \"playDuration\": \"PT45M9S\"}, {\"titleId\": \"CUSA45249_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T04:48:48.580000Z\", \"lastPlayedDateTime\": \"2023-10-04T05:39:19.580000Z\", \"playDuration\": \"PT50M14S\"}, {\"titleId\": \"CUSA45500_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-03T10:32:02.740000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:48:22.010000Z\", \"playDuration\": \"PT11M15S\"}, {\"titleId\": \"CUSA33670_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:30:34.850000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:31:58.800000Z\", \"playDuration\": \"PT15M54S\"}, {\"titleId\": \"PPSA05041_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:00:44.560000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:29:59.370000Z\", \"playDuration\": \"PT28M42S\"}, {\"titleId\": \"PPSA05040_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:58:23.140000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:00:42.450000Z\", \"playDuration\": \"PT1H7M49S\"}, {\"titleId\": \"CUSA30042_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:18:59.220000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:58:21.200000Z\", \"playDuration\": \"PT39M14S\"}, {\"titleId\": \"CUSA30043_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:44:40.950000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:18:57.260000Z\", \"playDuration\": \"PT28M55S\"}, {\"titleId\": \"PPSA15843_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:36:33.780000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:40:25.390000Z\", \"playDuration\": \"PT3M30S\"}, {\"titleId\": \"PPSA15844_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:33:02.240000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:36:31.740000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA42790_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:28:11.160000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:33:00.140000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA42791_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:24:08.320000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:28:09.170000Z\", \"playDuration\": \"PT3M53S\"}, {\"titleId\": \"PPSA18663_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:32:52.720000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:35:16.550000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA18661_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:29:59.390000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:32:50.260000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA18662_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:26:39.430000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:29:56.900000Z\", \"playDuration\": \"PT1M54S\"}, {\"titleId\": \"CUSA45280_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:21:54.210000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:26:35.920000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA45190_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:15:27.790000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:21:50.590000Z\", \"playDuration\": \"PT5M56S\"}, {\"titleId\": \"CUSA45279_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:06:43.700000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:15:24.150000Z\", \"playDuration\": \"PT6M26S\"}, {\"titleId\": \"PPSA11421_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:01:49.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:05:36.960000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"PPSA11420_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:57:54.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:01:47.810000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"CUSA38190_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:54:06.480000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:57:52.840000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA38189_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:36:36.180000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:54:03.640000Z\", \"playDuration\": \"PT4M8S\"}, {\"titleId\": \"PPSA01475_00\", \"name\": \"Ratchet & Clank: Rift Apart\", \"localizedName\": \"Ratchet & Clank: Rift Apart\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 11, \"concept\": {\"id\": 10000669, \"titleIds\": [\"PPSA01476_00\", \"PPSA03144_00\", \"PPSA01474_00\", \"PPSA01475_00\", \"PPSA01473_00\", \"PPSA03141_00\", \"PPSA05968_00\", \"PPSA03142_00\", \"PPSA03143_00\"], \"name\": \"Ratchet & Clank: Rift Apart\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ratchet & Clank: Rift Apart\", \"uk-UA\": \"Ratchet & Clank: Rift Apart\", \"de-DE\": \"Ratchet & Clank: Rift Apart\", \"en-US\": \"Ratchet & Clank: Rift Apart\", \"ko-KR\": \"Ratchet & Clank: Rift Apart\", \"pt-BR\": \"Ratchet & Clank: Em Uma Outra Dimens\\u00e3o\", \"es-ES\": \"RATCHET & CLANK: UNA DIMENSI\\u00d3N APARTE\", \"ar-AE\": \"Ratchet & Clank \\u0634\\u0642 \\u0637\\u0631\\u064a\\u0642\\u0643\", \"no-NO\": \"Ratchet & Clank: Rift Apart\", \"fr-CA\": \"Ratchet & Clank: Rift Apart\", \"it-IT\": \"Ratchet & Clank: Rift Apart\", \"pl-PL\": \"Ratchet & Clank: Rift Apart\", \"ru-RU\": \"Ratchet & Clank: \\u0421\\u043a\\u0432\\u043e\\u0437\\u044c \\u043c\\u0438\\u0440\\u044b\", \"zh-Hans\": \"\\u745e\\u5947\\u4e0e\\u53ee\\u5f53 \\u65f6\\u7a7a\\u8df3\\u8f6c\\u2122\", \"nl-NL\": \"Ratchet & Clank: Rift Apart\", \"pt-PT\": \"RATCHET & CLANK: UMA DIMENS\\u00c3O \\u00c0 PARTE\", \"zh-Hant\": \"Ratchet & Clank: Rift Apart\", \"sv-SE\": \"Ratchet & Clank: Rift Apart\", \"da-DK\": \"Ratchet & Clank: Rift Apart\", \"tr-TR\": \"Ratchet & Clank: Ayr\\u0131 D\\u00fcnyalar\", \"fr-FR\": \"Ratchet & Clank: Rift Apart\", \"en-GB\": \"Ratchet & Clank: Rift Apart\", \"es-419\": \"Ratchet & Clank: Una dimensi\\u00f3n aparte\", \"ja-JP\": \"\\u30e9\\u30c1\\u30a7\\u30c3\\u30c8\\uff06\\u30af\\u30e9\\u30f3\\u30af \\u30d1\\u30e9\\u30ec\\u30eb\\u30fb\\u30c8\\u30e9\\u30d6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-06-10T07:49:06.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T08:15:48.470000Z\", \"playDuration\": \"PT11H35M31S\"}, {\"titleId\": \"PPSA01325_00\", \"name\": \"ASTRO's PLAYROOM\", \"localizedName\": \"ASTRO's PLAYROOM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 20, \"concept\": {\"id\": 10000229, \"titleIds\": [\"PPSA01325_00\"], \"name\": \"ASTRO's PLAYROOM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ASTRO's PLAYROOM\", \"uk-UA\": \"ASTRO\\u2019s PLAYROOM\", \"de-DE\": \"ASTRO'S PLAYROOM\", \"en-US\": \"ASTRO's PLAYROOM\", \"ko-KR\": \"ASTRO's PLAYROOM\", \"pt-BR\": \"ASTRO's PLAYROOM\", \"es-ES\": \"ASTRO's PLAYROOM\", \"ar-AE\": \"ASTRO's PLAYROOM\", \"no-NO\": \"ASTRO's PLAYROOM\", \"fr-CA\": \"ASTRO'S PLAYROOM\", \"it-IT\": \"ASTRO's PLAYROOM\", \"pl-PL\": \"ASTRO\\u2019s PLAYROOM\", \"ru-RU\": \"ASTRO's PLAYROOM\", \"zh-Hans\": \"\\u5b87\\u5b99\\u673a\\u5668\\u4eba\\u65e0\\u7ebf\\u63a7\\u5236\\u5668\\u4f7f\\u7528\\u6307\\u5357\", \"nl-NL\": \"ASTRO's PLAYROOM\", \"pt-PT\": \"SALA DE JOGOS DO ASTRO\", \"zh-Hant\": \"ASTRO's PLAYROOM\", \"sv-SE\": \"ASTRO's PLAYROOM\", \"da-DK\": \"ASTRO's PLAYROOM\", \"tr-TR\": \"ASTRO's PLAYROOM\", \"fr-FR\": \"ASTRO'S PLAYROOM\", \"en-GB\": \"ASTRO's PLAYROOM\", \"es-419\": \"ASTRO's PLAYROOM\", \"ja-JP\": \"ASTRO's PLAYROOM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-12-20T03:36:27.680000Z\", \"lastPlayedDateTime\": \"2023-10-01T07:49:01.050000Z\", \"playDuration\": \"PT21H32M40S\"}, {\"titleId\": \"PPSA18803_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:56:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T13:12:27.470000Z\", \"playDuration\": \"PT14M24S\"}, {\"titleId\": \"PPSA18802_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:40:27.350000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:56:24.890000Z\", \"playDuration\": \"PT15M33S\"}, {\"titleId\": \"PPSA18804_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:24:17.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:40:24.330000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA18805_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:02:34.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:24:14.460000Z\", \"playDuration\": \"PT17M7S\"}, {\"titleId\": \"PPSA16368_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:51:27.180000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:02:01.690000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"PPSA16369_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:43:02.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:51:25.040000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"PPSA16370_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:34:40.210000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:42:45.530000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA16371_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:26:30.840000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:34:38.180000Z\", \"playDuration\": \"PT7M46S\"}, {\"titleId\": \"CUSA43317_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:17:21.290000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:26:23.050000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"CUSA43319_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:08:42.140000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:17:03.640000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA43318_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:00:18.740000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:08:28.270000Z\", \"playDuration\": \"PT8M2S\"}, {\"titleId\": \"CUSA43316_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T10:46:23.150000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:00:16.420000Z\", \"playDuration\": \"PT11M52S\"}, {\"titleId\": \"PPSA09453_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T03:10:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:31:14.520000Z\", \"playDuration\": \"PT2M59S\"}, {\"titleId\": \"CUSA35744_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T02:54:12.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:27:40.350000Z\", \"playDuration\": \"PT6H15M51S\"}, {\"titleId\": \"PPSA15533_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:23:30.350000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:32:29.160000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA15532_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:15:58.510000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:23:27.410000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA42542_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:15:54.740000Z\", \"playDuration\": \"PT9M46S\"}, {\"titleId\": \"CUSA42543_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:54:58.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:06:10.860000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA45025_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:39:30.770000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:48:24.480000Z\", \"playDuration\": \"PT8M36S\"}, {\"titleId\": \"CUSA45027_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:35:21.510000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:39:28.850000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA45028_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:31:21.140000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:35:19.740000Z\", \"playDuration\": \"PT3M52S\"}, {\"titleId\": \"CUSA45026_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:25:58.530000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:31:19.310000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"PPSA18648_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:39.760000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:59.640000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18649_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:15.820000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:37.220000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18646_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:50.750000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:13.460000Z\", \"playDuration\": \"PT18S\"}, {\"titleId\": \"PPSA18647_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:27.510000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:27:48.750000Z\", \"playDuration\": \"PT16S\"}, {\"titleId\": \"CUSA45272_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:06:49.460000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:25:30.620000Z\", \"playDuration\": \"PT18M37S\"}, {\"titleId\": \"CUSA45273_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:45:02.450000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:06:47.440000Z\", \"playDuration\": \"PT18M16S\"}, {\"titleId\": \"CUSA45270_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:25:45.300000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:45:00.350000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA45271_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T11:51:44.560000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:25:43.170000Z\", \"playDuration\": \"PT28M27S\"}, {\"titleId\": \"CUSA41266_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"lastPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA05282_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:50:19.000000Z\", \"lastPlayedDateTime\": \"2023-09-24T01:16:29.560000Z\", \"playDuration\": \"PT25M54S\"}, {\"titleId\": \"PPSA05283_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:21:56.940000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:49:45.090000Z\", \"playDuration\": \"PT27M29S\"}, {\"titleId\": \"PPSA05284_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:37:45.710000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:21:54.670000Z\", \"playDuration\": \"PT25M48S\"}, {\"titleId\": \"CUSA30403_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:07:51.580000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:37:31.630000Z\", \"playDuration\": \"PT27M45S\"}, {\"titleId\": \"CUSA30404_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T22:22:49.260000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:07:49.270000Z\", \"playDuration\": \"PT37M31S\"}, {\"titleId\": \"CUSA30402_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:24:24.920000Z\", \"lastPlayedDateTime\": \"2023-09-23T05:11:11.690000Z\", \"playDuration\": \"PT44M16S\"}, {\"titleId\": \"PPSA08825_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:05:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:18:14.920000Z\", \"playDuration\": \"PT12M55S\"}, {\"titleId\": \"CUSA35046_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T03:49:05.630000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:05:11.840000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA35045_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T02:17:12.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T03:19:31.220000Z\", \"playDuration\": \"PT1H1M39S\"}, {\"titleId\": \"PPSA18704_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T01:31:37.000000Z\", \"lastPlayedDateTime\": \"2023-09-23T02:12:24.380000Z\", \"playDuration\": \"PT40M37S\"}, {\"titleId\": \"PPSA18703_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:58:27.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T01:31:35.250000Z\", \"playDuration\": \"PT29M33S\"}, {\"titleId\": \"PPSA18705_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:26:14.510000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:58:24.920000Z\", \"playDuration\": \"PT30M14S\"}, {\"titleId\": \"PPSA18702_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T23:44:37.250000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:26:03.050000Z\", \"playDuration\": \"PT41M17S\"}, {\"titleId\": \"PPSA16992_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:47:17.250000Z\", \"lastPlayedDateTime\": \"2023-09-22T14:14:47.020000Z\", \"playDuration\": \"PT17M48S\"}, {\"titleId\": \"PPSA16991_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:25:46.650000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:44:48.490000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA43856_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T12:59:02.770000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:25:44.680000Z\", \"playDuration\": \"PT19M4S\"}, {\"titleId\": \"CUSA43857_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:54:08.800000Z\", \"lastPlayedDateTime\": \"2023-09-22T12:59:00.730000Z\", \"playDuration\": \"PT47M14S\"}, {\"titleId\": \"PPSA17797_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:50:59.310000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:53:42.190000Z\", \"playDuration\": \"PT2M27S\"}, {\"titleId\": \"PPSA17798_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:48:06.950000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:50:57.150000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA17800_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:45:12.760000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:48:04.720000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17799_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:41:36.610000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:44:34.170000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44504_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:38:10.130000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:41:34.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44505_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:34:57.570000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:38:06.910000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44502_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:17:56.670000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:34:55.370000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44503_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:14:13.120000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:17:54.550000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA12631_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:08:04.520000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:10:20.550000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA12632_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:05:39.530000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:08:02.510000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA39593_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:03:31.820000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:05:37.560000Z\", \"playDuration\": \"PT2M\"}, {\"titleId\": \"CUSA39594_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:01:10.190000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:03:29.520000Z\", \"playDuration\": \"PT2M13S\"}, {\"titleId\": \"CUSA30727_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T14:13:33.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T14:21:16.530000Z\", \"playDuration\": \"PT7M32S\"}, {\"titleId\": \"CUSA45044_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:07:24.850000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:30:33.830000Z\", \"playDuration\": \"PT8M34S\"}, {\"titleId\": \"PPSA15534_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:46:18.000000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:08:39.680000Z\", \"playDuration\": \"PT11M41S\"}, {\"titleId\": \"PPSA15535_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:31:38.390000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:46:16.010000Z\", \"playDuration\": \"PT12M27S\"}, {\"titleId\": \"CUSA42544_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:12:37.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:31:27.520000Z\", \"playDuration\": \"PT14M33S\"}, {\"titleId\": \"CUSA42545_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:51:16.840000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:12:29.600000Z\", \"playDuration\": \"PT18M3S\"}, {\"titleId\": \"PPSA18252_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:20:53.870000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:43:43.160000Z\", \"playDuration\": \"PT19M23S\"}, {\"titleId\": \"PPSA18253_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:00:08.670000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:19:50.880000Z\", \"playDuration\": \"PT19M37S\"}, {\"titleId\": \"CUSA44920_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:31:39.500000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:00:06.780000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA44921_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:09:18.140000Z\", \"lastPlayedDateTime\": \"2023-09-21T10:30:44.750000Z\", \"playDuration\": \"PT21M22S\"}, {\"titleId\": \"CUSA45061_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:00:24.530000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:06:52.310000Z\", \"playDuration\": \"PT6M25S\"}, {\"titleId\": \"CUSA45060_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T13:47:30.550000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:00:23.130000Z\", \"playDuration\": \"PT12M44S\"}, {\"titleId\": \"CUSA45124_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:33:19.650000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:42:28.800000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"CUSA45123_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:19:41.950000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:33:18.070000Z\", \"playDuration\": \"PT8M7S\"}, {\"titleId\": \"CUSA45328_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:09:32.030000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:18:29.960000Z\", \"playDuration\": \"PT2M34S\"}, {\"titleId\": \"CUSA45327_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:04:22.870000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:09:27.940000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA45326_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:02:36.980000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:04:18.610000Z\", \"playDuration\": \"PT1M32S\"}, {\"titleId\": \"CUSA45325_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T12:59:20.940000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:02:32.340000Z\", \"playDuration\": \"PT3M3S\"}, {\"titleId\": \"CUSA27311_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T00:35:04.450000Z\", \"lastPlayedDateTime\": \"2023-09-19T12:59:01.690000Z\", \"playDuration\": \"PT4H51M48S\"}, {\"titleId\": \"CUSA45128_00\", \"name\": \"Only Way Up! Parkour Jump Simulator\", \"localizedName\": \"Only Way Up! Parkour Jump Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009173, \"titleIds\": [\"CUSA45128_00\", \"CUSA45129_00\"], \"name\": \"Only Way Up! Parkour Jump Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PARTY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Only Way Up! Parkour Jump Simulator\", \"uk-UA\": \"Only Way Up! Parkour Jump Simulator\", \"de-DE\": \"Only Way Up! Parkour Jump Simulator\", \"en-US\": \"Only Way Up! Parkour Jump Simulator\", \"ko-KR\": \"Only Way Up! Parkour Jump Simulator\", \"pt-BR\": \"Only Way Up! Parkour Jump Simulator\", \"es-ES\": \"Only Way Up! Parkour Jump Simulator\", \"ar-AE\": \"Only Way Up! Parkour Jump Simulator\", \"no-NO\": \"Only Way Up! Parkour Jump Simulator\", \"fr-CA\": \"Only Way Up! Parkour Jump Simulator\", \"it-IT\": \"Only Way Up! Parkour Jump Simulator\", \"pl-PL\": \"Only Way Up! Parkour Jump Simulator\", \"ru-RU\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hans\": \"Only Way Up! Parkour Jump Simulator\", \"nl-NL\": \"Only Way Up! Parkour Jump Simulator\", \"pt-PT\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hant\": \"Only Way Up! Parkour Jump Simulator\", \"sv-SE\": \"Only Way Up! Parkour Jump Simulator\", \"da-DK\": \"Only Way Up! Parkour Jump Simulator\", \"tr-TR\": \"Only Way Up! Parkour Jump Simulator\", \"fr-FR\": \"Only Way Up! Parkour Jump Simulator\", \"en-GB\": \"Only Way Up! Parkour Jump Simulator\", \"es-419\": \"Only Way Up! Parkour Jump Simulator\", \"ja-JP\": \"Only Way Up! Parkour Jump Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T05:37:31.060000Z\", \"lastPlayedDateTime\": \"2023-09-18T06:59:54.250000Z\", \"playDuration\": \"PT1H19M7S\"}, {\"titleId\": \"PPSA14313_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T13:05:55.100000Z\", \"lastPlayedDateTime\": \"2023-09-18T05:37:28.780000Z\", \"playDuration\": \"PT4H17S\"}, {\"titleId\": \"PPSA17410_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:55:26.290000Z\", \"lastPlayedDateTime\": \"2023-09-16T12:02:11.340000Z\", \"playDuration\": \"PT6M38S\"}, {\"titleId\": \"PPSA17411_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:46:07.720000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:55:23.820000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA12629_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:38:06.180000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:45:46.860000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"PPSA12630_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:36:09.630000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:38:04.150000Z\", \"playDuration\": \"PT1M43S\"}, {\"titleId\": \"CUSA39591_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:24:24.830000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:36:07.890000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA39592_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:21:02.590000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:24:22.820000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA18086_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:13:47.910000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:18:32.390000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA35689_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:14:15.850000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:16:23.540000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA35690_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:28:39.390000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:15:22.900000Z\", \"playDuration\": \"PT51S\"}, {\"titleId\": \"PPSA18085_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:09:17.000000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:13:45.570000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA35896_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:48:35.490000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:54:35.730000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35895_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:43:13.870000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:48:33.500000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA35897_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:40:04.220000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:43:11.720000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA35898_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:31:07.900000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:40:02.310000Z\", \"playDuration\": \"PT8M48S\"}, {\"titleId\": \"PPSA02342_00\", \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"localizedName\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 234689, \"titleIds\": [\"CUSA16746_00\", \"CUSA26351_00\", \"CUSA26350_00\", \"CUSA16742_00\", \"PPSA02424_00\", \"CUSA16743_00\", \"PPSA02342_00\", \"PPSA02343_00\", \"PPSA02423_00\"], \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"uk-UA\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"de-DE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-US\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"ko-KR\": \"It Takes Two PS4\\u2122\\uc640 PS5\\u2122\", \"pt-BR\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"es-ES\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ar-AE\": \"It Takes Two PS4\\u2122\\u200e \\u0648PS5\\u2122\\u200e\", \"no-NO\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"fr-CA\": \"It Takes Two, PS4\\u2122 et PS5\\u2122\", \"it-IT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"pl-PL\": \"It Takes Two na PS4\\u2122 i PS5\\u2122\", \"ru-RU\": \"It Takes Two PS4\\u2122 \\u0438 PS5\\u2122\", \"zh-Hans\": \"\\u53cc\\u4eba\\u6210\\u884c PS4\\u2122 \\u548c PS5\\u2122\", \"nl-NL\": \"It Takes Two PS4\\u2122 en PS5\\u2122\", \"pt-PT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"zh-Hant\": \"\\u300a\\u96d9\\u4eba\\u6210\\u884c\\u300bPS4\\u2122 & PS5\\u2122\", \"sv-SE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"da-DK\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"tr-TR\": \"It Takes Two PS4\\u2122 ve PS5\\u2122\", \"fr-FR\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-GB\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"es-419\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ja-JP\": \"\\u300cIt Takes Two\\u300dPS4\\u2122 & PS5\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T10:20:23.300000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:20:23.000000Z\", \"playDuration\": \"PT2H42M52S\"}, {\"titleId\": \"PPSA15565_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T09:58:36.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T10:47:49.320000Z\", \"playDuration\": \"PT48M52S\"}, {\"titleId\": \"PPSA15566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T08:39:02.370000Z\", \"lastPlayedDateTime\": \"2023-09-10T09:09:48.510000Z\", \"playDuration\": \"PT29M43S\"}, {\"titleId\": \"CUSA42567_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:52:25.210000Z\", \"lastPlayedDateTime\": \"2023-09-10T08:38:38.870000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:04:39.770000Z\", \"lastPlayedDateTime\": \"2023-09-10T07:43:59.580000Z\", \"playDuration\": \"PT38M42S\"}, {\"titleId\": \"CUSA45018_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:23:48.690000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:44:22.550000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA45019_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:11:57.200000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:23:44.820000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"PPSA15588_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:41:02.130000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:07:21.980000Z\", \"playDuration\": \"PT22M54S\"}, {\"titleId\": \"PPSA15589_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:16:47.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:41:00.200000Z\", \"playDuration\": \"PT23M14S\"}, {\"titleId\": \"PPSA15586_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:49:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:12:42.890000Z\", \"playDuration\": \"PT22M59S\"}, {\"titleId\": \"PPSA15587_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:16:41.430000Z\", \"lastPlayedDateTime\": \"2023-09-10T04:49:12.340000Z\", \"playDuration\": \"PT23M29S\"}, {\"titleId\": \"CUSA42600_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T02:19:16.080000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:41:59.070000Z\", \"playDuration\": \"PT22M30S\"}, {\"titleId\": \"CUSA42599_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:55:14.280000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:18:10.940000Z\", \"playDuration\": \"PT22M52S\"}, {\"titleId\": \"CUSA42595_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:29:11.910000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:53:44.290000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"CUSA42601_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T00:21:45.740000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:29:10.200000Z\", \"playDuration\": \"PT1H5M14S\"}, {\"titleId\": \"PPSA17492_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:09:19.700000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:10:04.600000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA17491_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:51.300000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:09:17.240000Z\", \"playDuration\": \"PT15S\"}, {\"titleId\": \"PPSA17493_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:22.000000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:48.810000Z\", \"playDuration\": \"PT20S\"}, {\"titleId\": \"PPSA17490_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:07:59.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:20.730000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"CUSA44265_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:52:08.970000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:07:54.850000Z\", \"playDuration\": \"PT15M41S\"}, {\"titleId\": \"CUSA44264_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:38:05.240000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:52:06.890000Z\", \"playDuration\": \"PT13M17S\"}, {\"titleId\": \"CUSA44266_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:23:34.910000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:38:00.590000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"CUSA44263_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:53:37.370000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:14:57.180000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"PPSA17357_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:47:43.660000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:52:38.520000Z\", \"playDuration\": \"PT1M33S\"}, {\"titleId\": \"PPSA17358_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:40:33.480000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:47:41.530000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA17359_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:31:00.980000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:40:31.550000Z\", \"playDuration\": \"PT9M24S\"}, {\"titleId\": \"PPSA17360_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:28:04.140000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:30:58.910000Z\", \"playDuration\": \"PT2M19S\"}, {\"titleId\": \"CUSA44173_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T11:59:31.350000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:25:46.520000Z\", \"playDuration\": \"PT25M52S\"}, {\"titleId\": \"CUSA44174_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T10:33:51.040000Z\", \"lastPlayedDateTime\": \"2023-09-09T11:59:29.370000Z\", \"playDuration\": \"PT31M45S\"}, {\"titleId\": \"CUSA44171_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T23:57:10.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T00:37:08.840000Z\", \"playDuration\": \"PT39M43S\"}, {\"titleId\": \"CUSA44172_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T22:21:02.750000Z\", \"lastPlayedDateTime\": \"2023-09-08T23:25:25.940000Z\", \"playDuration\": \"PT1H3M34S\"}, {\"titleId\": \"PPSA01652_00\", \"name\": \"YouTube\", \"localizedName\": \"YouTube\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"category\": \"ps5_native_media_app\", \"service\": \"other\", \"playCount\": 11, \"concept\": {\"id\": 205453, \"titleIds\": [\"CUSA06021_00\", \"PPSA01650_00\", \"PPSA01651_00\", \"CUSA01065_00\", \"PPSA01652_00\", \"CUSA01015_00\", \"CUSA01034_00\", \"CUSA01116_00\", \"CUSA15375_00\"], \"name\": \"YouTube\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"YouTube\", \"uk-UA\": \"YouTube\", \"de-DE\": \"YouTube\", \"en-US\": \"YouTube\", \"ko-KR\": \"YouTube\", \"pt-BR\": \"YouTube\", \"es-ES\": \"YouTube\", \"ar-AE\": \"YouTube\", \"no-NO\": \"YouTube\", \"fr-CA\": \"YouTube\", \"it-IT\": \"YouTube\", \"pl-PL\": \"YouTube\", \"ru-RU\": \"YouTube\", \"zh-Hans\": \"YouTube\", \"nl-NL\": \"YouTube\", \"pt-PT\": \"YouTube\", \"zh-Hant\": \"YouTube\", \"sv-SE\": \"YouTube\", \"da-DK\": \"YouTube\", \"tr-TR\": \"YouTube\", \"fr-FR\": \"YouTube\", \"en-GB\": \"YouTube\", \"es-419\": \"YouTube\", \"ja-JP\": \"YouTube\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-09-05T15:20:21.410000Z\", \"lastPlayedDateTime\": \"2023-09-08T12:54:55.580000Z\", \"playDuration\": \"PT8H50M25S\"}, {\"titleId\": \"PPSA17316_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:10:39.520000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:23:17.640000Z\", \"playDuration\": \"PT2M36S\"}, {\"titleId\": \"CUSA44132_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:00:47.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:10:35.860000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA17487_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:01:28.430000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:05:39.230000Z\", \"playDuration\": \"PT3M56S\"}, {\"titleId\": \"PPSA17261_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:57:19.390000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:01:25.180000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"CUSA44092_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:52:55.770000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:57:15.440000Z\", \"playDuration\": \"PT4M13S\"}, {\"titleId\": \"CUSA44093_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:44:58.280000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:52:51.740000Z\", \"playDuration\": \"PT6M40S\"}, {\"titleId\": \"PPSA18331_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:34:52.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:44:16.970000Z\", \"playDuration\": \"PT9M11S\"}, {\"titleId\": \"PPSA18330_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:06:07.260000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:34:50.070000Z\", \"playDuration\": \"PT14M28S\"}, {\"titleId\": \"PPSA18332_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:56:54.970000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:06:04.280000Z\", \"playDuration\": \"PT7M17S\"}, {\"titleId\": \"CUSA45021_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:52:04.130000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:56:51.140000Z\", \"playDuration\": \"PT4M26S\"}, {\"titleId\": \"CUSA45020_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:33:47.420000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:52:00.490000Z\", \"playDuration\": \"PT17M5S\"}, {\"titleId\": \"CUSA44885_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:20:34.610000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:33:43.650000Z\", \"playDuration\": \"PT10M23S\"}, {\"titleId\": \"PPSA17830_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:16:20.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:19:44.910000Z\", \"playDuration\": \"PT3M4S\"}, {\"titleId\": \"PPSA17829_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:12:45.240000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:16:18.410000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"PPSA17828_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:05:34.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:12:42.580000Z\", \"playDuration\": \"PT6M55S\"}], \"nextOffset\": 200, \"previousOffset\": 0, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 111, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T13:45:37.610000Z\", \"playDuration\": \"PT213H54M25S\"}, {\"titleId\": \"CUSA03105_00\", \"name\": \"GOD EATER RESURRECTION\", \"localizedName\": \"GOD EATER RESURRECTION\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 201731, \"titleIds\": [\"CUSA03105_00\", \"CUSA03369_00\", \"CUSA03703_00\", \"CUSA03525_00\", \"CUSA03409_00\", \"CUSA03592_00\", \"PCSB00875_00\"], \"name\": \"GOD EATER RESURRECTION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GOD EATER RESURRECTION\", \"uk-UA\": \"GOD EATER RESURRECTION\", \"de-DE\": \"GOD EATER RESURRECTION\", \"en-US\": \"GOD EATER RESURRECTION\", \"ko-KR\": \"GOD EATER RESURRECTION\", \"pt-BR\": \"GOD EATER RESURRECTION\", \"es-ES\": \"GOD EATER RESURRECTION\", \"ar-AE\": \"GOD EATER RESURRECTION\", \"no-NO\": \"GOD EATER RESURRECTION\", \"fr-CA\": \"GOD EATER RESURRECTION\", \"it-IT\": \"GOD EATER RESURRECTION\", \"pl-PL\": \"GOD EATER RESURRECTION\", \"ru-RU\": \"GOD EATER RESURRECTION\", \"zh-Hans\": \"GOD EATER RESURRECTION\", \"nl-NL\": \"GOD EATER RESURRECTION\", \"pt-PT\": \"GOD EATER RESURRECTION\", \"zh-Hant\": \"GOD EATER RESURRECTION\", \"sv-SE\": \"GOD EATER RESURRECTION\", \"da-DK\": \"GOD EATER RESURRECTION\", \"tr-TR\": \"GOD EATER RESURRECTION\", \"fr-FR\": \"GOD EATER RESURRECTION\", \"en-GB\": \"GOD EATER RESURRECTION\", \"es-419\": \"GOD EATER RESURRECTION\", \"ja-JP\": \"GOD EATER RESURRECTION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2016-06-23T12:56:47.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T12:27:25.460000Z\", \"playDuration\": \"PT6H27M47S\"}, {\"titleId\": \"PPSA20676_00\", \"name\": \"VALORANT\", \"localizedName\": \"VALORANT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10010048, \"titleIds\": [\"PPSA20676_00\", \"PPSA20711_00\"], \"name\": \"VALORANT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"VALORANT\", \"uk-UA\": \"VALORANT\", \"de-DE\": \"VALORANT\", \"en-US\": \"VALORANT\", \"ko-KR\": \"\\ubc1c\\ub85c\\ub780\\ud2b8\", \"pt-BR\": \"VALORANT\", \"es-ES\": \"VALORANT\", \"ar-AE\": \"VALORANT\", \"no-NO\": \"VALORANT\", \"fr-CA\": \"VALORANT\", \"it-IT\": \"VALORANT\", \"pl-PL\": \"VALORANT\", \"ru-RU\": \"VALORANT\", \"zh-Hans\": \"VALORANT\", \"nl-NL\": \"VALORANT\", \"pt-PT\": \"VALORANT\", \"zh-Hant\": \"\\u300a\\u7279\\u6230\\u82f1\\u8c6a\\u300b\", \"sv-SE\": \"VALORANT\", \"da-DK\": \"VALORANT\", \"tr-TR\": \"VALORANT\", \"fr-FR\": \"VALORANT\", \"en-GB\": \"VALORANT\", \"es-419\": \"VALORANT\", \"ja-JP\": \"VALORANT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2024-09-10T10:01:08.080000Z\", \"lastPlayedDateTime\": \"2024-09-10T10:27:07.390000Z\", \"playDuration\": \"PT25M34S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 21, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2024-09-08T14:01:17.230000Z\", \"playDuration\": \"PT14H51M10S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}, {\"titleId\": \"PPSA01762_00\", \"name\": \"DMM.com\", \"localizedName\": \"DMM.com\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"category\": \"ps5_web_based_media_app\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201149, \"titleIds\": [\"CUSA03302_00\", \"PPSA01762_00\"], \"name\": \"DMM.com\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"DMM.com\", \"en-GB\": \"DMM.com\", \"ja-JP\": \"DMM.com\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-12T08:40:04.430000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:00:22.410000Z\", \"playDuration\": \"PT2H20M16S\"}, {\"titleId\": \"CUSA45152_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:54:43.420000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:58:27.450000Z\", \"playDuration\": \"PT3M40S\"}, {\"titleId\": \"CUSA45153_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:48:11.890000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:54:39.250000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA45151_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:42:13.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:48:07.660000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA45150_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:25:05.410000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:42:03.850000Z\", \"playDuration\": \"PT14M30S\"}, {\"titleId\": \"PPSA16765_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:07:31.450000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:22:57.240000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"CUSA43664_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T12:15:00.950000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:07:29.390000Z\", \"playDuration\": \"PT50M18S\"}, {\"titleId\": \"PPSA15830_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:55:32.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T12:14:45.710000Z\", \"playDuration\": \"PT19M\"}, {\"titleId\": \"PPSA15831_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:22:36.780000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:55:30.700000Z\", \"playDuration\": \"PT20M8S\"}, {\"titleId\": \"CUSA42782_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:01:42.610000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:22:34.580000Z\", \"playDuration\": \"PT20M39S\"}, {\"titleId\": \"CUSA42783_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T10:32:05.580000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:01:40.330000Z\", \"playDuration\": \"PT27M20S\"}, {\"titleId\": \"PPSA12613_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:41:02.220000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:42:05.560000Z\", \"playDuration\": \"PT52S\"}, {\"titleId\": \"PPSA12614_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:40:00.840000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:41:00.100000Z\", \"playDuration\": \"PT55S\"}, {\"titleId\": \"CUSA39570_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:38:40.540000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:39:58.360000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA39571_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:37:25.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:38:38.400000Z\", \"playDuration\": \"PT1M8S\"}, {\"titleId\": \"CUSA45034_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T05:09:26.150000Z\", \"lastPlayedDateTime\": \"2023-10-05T07:10:00.800000Z\", \"playDuration\": \"PT1H5M28S\"}, {\"titleId\": \"PPSA16081_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:50:13.440000Z\", \"lastPlayedDateTime\": \"2023-10-05T05:08:19.190000Z\", \"playDuration\": \"PT17M51S\"}, {\"titleId\": \"PPSA16083_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:29:52.000000Z\", \"lastPlayedDateTime\": \"2023-10-05T04:50:11.360000Z\", \"playDuration\": \"PT19M44S\"}, {\"titleId\": \"PPSA16084_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:27:07.930000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:44:43.530000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"PPSA16082_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:09:47.200000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:26:59.360000Z\", \"playDuration\": \"PT17M\"}, {\"titleId\": \"CUSA42988_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:38:02.180000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:06:41.280000Z\", \"playDuration\": \"PT28M21S\"}, {\"titleId\": \"CUSA42990_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:19:45.350000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:37:35.780000Z\", \"playDuration\": \"PT17M9S\"}, {\"titleId\": \"CUSA42991_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:00:11.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:19:30.010000Z\", \"playDuration\": \"PT18M29S\"}, {\"titleId\": \"CUSA42989_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T06:49:30.790000Z\", \"lastPlayedDateTime\": \"2023-10-04T07:14:37.790000Z\", \"playDuration\": \"PT24M39S\"}, {\"titleId\": \"CUSA45248_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T05:39:23.710000Z\", \"lastPlayedDateTime\": \"2023-10-04T06:24:46.440000Z\", \"playDuration\": \"PT45M9S\"}, {\"titleId\": \"CUSA45249_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T04:48:48.580000Z\", \"lastPlayedDateTime\": \"2023-10-04T05:39:19.580000Z\", \"playDuration\": \"PT50M14S\"}, {\"titleId\": \"CUSA45500_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-03T10:32:02.740000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:48:22.010000Z\", \"playDuration\": \"PT11M15S\"}, {\"titleId\": \"CUSA33670_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:30:34.850000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:31:58.800000Z\", \"playDuration\": \"PT15M54S\"}, {\"titleId\": \"PPSA05041_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:00:44.560000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:29:59.370000Z\", \"playDuration\": \"PT28M42S\"}, {\"titleId\": \"PPSA05040_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:58:23.140000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:00:42.450000Z\", \"playDuration\": \"PT1H7M49S\"}, {\"titleId\": \"CUSA30042_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:18:59.220000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:58:21.200000Z\", \"playDuration\": \"PT39M14S\"}, {\"titleId\": \"CUSA30043_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:44:40.950000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:18:57.260000Z\", \"playDuration\": \"PT28M55S\"}, {\"titleId\": \"PPSA15843_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:36:33.780000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:40:25.390000Z\", \"playDuration\": \"PT3M30S\"}, {\"titleId\": \"PPSA15844_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:33:02.240000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:36:31.740000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA42790_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:28:11.160000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:33:00.140000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA42791_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:24:08.320000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:28:09.170000Z\", \"playDuration\": \"PT3M53S\"}, {\"titleId\": \"PPSA18663_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:32:52.720000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:35:16.550000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA18661_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:29:59.390000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:32:50.260000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA18662_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:26:39.430000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:29:56.900000Z\", \"playDuration\": \"PT1M54S\"}, {\"titleId\": \"CUSA45280_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:21:54.210000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:26:35.920000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA45190_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:15:27.790000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:21:50.590000Z\", \"playDuration\": \"PT5M56S\"}, {\"titleId\": \"CUSA45279_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:06:43.700000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:15:24.150000Z\", \"playDuration\": \"PT6M26S\"}, {\"titleId\": \"PPSA11421_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:01:49.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:05:36.960000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"PPSA11420_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:57:54.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:01:47.810000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"CUSA38190_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:54:06.480000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:57:52.840000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA38189_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:36:36.180000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:54:03.640000Z\", \"playDuration\": \"PT4M8S\"}, {\"titleId\": \"PPSA01475_00\", \"name\": \"Ratchet & Clank: Rift Apart\", \"localizedName\": \"Ratchet & Clank: Rift Apart\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 11, \"concept\": {\"id\": 10000669, \"titleIds\": [\"PPSA01476_00\", \"PPSA03144_00\", \"PPSA01474_00\", \"PPSA01475_00\", \"PPSA01473_00\", \"PPSA03141_00\", \"PPSA05968_00\", \"PPSA03142_00\", \"PPSA03143_00\"], \"name\": \"Ratchet & Clank: Rift Apart\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ratchet & Clank: Rift Apart\", \"uk-UA\": \"Ratchet & Clank: Rift Apart\", \"de-DE\": \"Ratchet & Clank: Rift Apart\", \"en-US\": \"Ratchet & Clank: Rift Apart\", \"ko-KR\": \"Ratchet & Clank: Rift Apart\", \"pt-BR\": \"Ratchet & Clank: Em Uma Outra Dimens\\u00e3o\", \"es-ES\": \"RATCHET & CLANK: UNA DIMENSI\\u00d3N APARTE\", \"ar-AE\": \"Ratchet & Clank \\u0634\\u0642 \\u0637\\u0631\\u064a\\u0642\\u0643\", \"no-NO\": \"Ratchet & Clank: Rift Apart\", \"fr-CA\": \"Ratchet & Clank: Rift Apart\", \"it-IT\": \"Ratchet & Clank: Rift Apart\", \"pl-PL\": \"Ratchet & Clank: Rift Apart\", \"ru-RU\": \"Ratchet & Clank: \\u0421\\u043a\\u0432\\u043e\\u0437\\u044c \\u043c\\u0438\\u0440\\u044b\", \"zh-Hans\": \"\\u745e\\u5947\\u4e0e\\u53ee\\u5f53 \\u65f6\\u7a7a\\u8df3\\u8f6c\\u2122\", \"nl-NL\": \"Ratchet & Clank: Rift Apart\", \"pt-PT\": \"RATCHET & CLANK: UMA DIMENS\\u00c3O \\u00c0 PARTE\", \"zh-Hant\": \"Ratchet & Clank: Rift Apart\", \"sv-SE\": \"Ratchet & Clank: Rift Apart\", \"da-DK\": \"Ratchet & Clank: Rift Apart\", \"tr-TR\": \"Ratchet & Clank: Ayr\\u0131 D\\u00fcnyalar\", \"fr-FR\": \"Ratchet & Clank: Rift Apart\", \"en-GB\": \"Ratchet & Clank: Rift Apart\", \"es-419\": \"Ratchet & Clank: Una dimensi\\u00f3n aparte\", \"ja-JP\": \"\\u30e9\\u30c1\\u30a7\\u30c3\\u30c8\\uff06\\u30af\\u30e9\\u30f3\\u30af \\u30d1\\u30e9\\u30ec\\u30eb\\u30fb\\u30c8\\u30e9\\u30d6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-06-10T07:49:06.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T08:15:48.470000Z\", \"playDuration\": \"PT11H35M31S\"}, {\"titleId\": \"PPSA01325_00\", \"name\": \"ASTRO's PLAYROOM\", \"localizedName\": \"ASTRO's PLAYROOM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 20, \"concept\": {\"id\": 10000229, \"titleIds\": [\"PPSA01325_00\"], \"name\": \"ASTRO's PLAYROOM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ASTRO's PLAYROOM\", \"uk-UA\": \"ASTRO\\u2019s PLAYROOM\", \"de-DE\": \"ASTRO'S PLAYROOM\", \"en-US\": \"ASTRO's PLAYROOM\", \"ko-KR\": \"ASTRO's PLAYROOM\", \"pt-BR\": \"ASTRO's PLAYROOM\", \"es-ES\": \"ASTRO's PLAYROOM\", \"ar-AE\": \"ASTRO's PLAYROOM\", \"no-NO\": \"ASTRO's PLAYROOM\", \"fr-CA\": \"ASTRO'S PLAYROOM\", \"it-IT\": \"ASTRO's PLAYROOM\", \"pl-PL\": \"ASTRO\\u2019s PLAYROOM\", \"ru-RU\": \"ASTRO's PLAYROOM\", \"zh-Hans\": \"\\u5b87\\u5b99\\u673a\\u5668\\u4eba\\u65e0\\u7ebf\\u63a7\\u5236\\u5668\\u4f7f\\u7528\\u6307\\u5357\", \"nl-NL\": \"ASTRO's PLAYROOM\", \"pt-PT\": \"SALA DE JOGOS DO ASTRO\", \"zh-Hant\": \"ASTRO's PLAYROOM\", \"sv-SE\": \"ASTRO's PLAYROOM\", \"da-DK\": \"ASTRO's PLAYROOM\", \"tr-TR\": \"ASTRO's PLAYROOM\", \"fr-FR\": \"ASTRO'S PLAYROOM\", \"en-GB\": \"ASTRO's PLAYROOM\", \"es-419\": \"ASTRO's PLAYROOM\", \"ja-JP\": \"ASTRO's PLAYROOM\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-12-20T03:36:27.680000Z\", \"lastPlayedDateTime\": \"2023-10-01T07:49:01.050000Z\", \"playDuration\": \"PT21H32M40S\"}, {\"titleId\": \"PPSA18803_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:56:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T13:12:27.470000Z\", \"playDuration\": \"PT14M24S\"}, {\"titleId\": \"PPSA18802_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:40:27.350000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:56:24.890000Z\", \"playDuration\": \"PT15M33S\"}, {\"titleId\": \"PPSA18804_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:24:17.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:40:24.330000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA18805_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:02:34.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:24:14.460000Z\", \"playDuration\": \"PT17M7S\"}, {\"titleId\": \"PPSA16368_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:51:27.180000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:02:01.690000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"PPSA16369_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:43:02.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:51:25.040000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"PPSA16370_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:34:40.210000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:42:45.530000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA16371_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:26:30.840000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:34:38.180000Z\", \"playDuration\": \"PT7M46S\"}, {\"titleId\": \"CUSA43317_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:17:21.290000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:26:23.050000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"CUSA43319_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:08:42.140000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:17:03.640000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA43318_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:00:18.740000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:08:28.270000Z\", \"playDuration\": \"PT8M2S\"}, {\"titleId\": \"CUSA43316_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T10:46:23.150000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:00:16.420000Z\", \"playDuration\": \"PT11M52S\"}, {\"titleId\": \"PPSA09453_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T03:10:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:31:14.520000Z\", \"playDuration\": \"PT2M59S\"}, {\"titleId\": \"CUSA35744_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T02:54:12.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:27:40.350000Z\", \"playDuration\": \"PT6H15M51S\"}, {\"titleId\": \"PPSA15533_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:23:30.350000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:32:29.160000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA15532_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:15:58.510000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:23:27.410000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA42542_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:15:54.740000Z\", \"playDuration\": \"PT9M46S\"}, {\"titleId\": \"CUSA42543_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:54:58.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:06:10.860000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA45025_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:39:30.770000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:48:24.480000Z\", \"playDuration\": \"PT8M36S\"}, {\"titleId\": \"CUSA45027_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:35:21.510000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:39:28.850000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA45028_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:31:21.140000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:35:19.740000Z\", \"playDuration\": \"PT3M52S\"}, {\"titleId\": \"CUSA45026_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:25:58.530000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:31:19.310000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"PPSA18648_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:39.760000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:59.640000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18649_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:15.820000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:37.220000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18646_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:50.750000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:13.460000Z\", \"playDuration\": \"PT18S\"}, {\"titleId\": \"PPSA18647_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:27.510000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:27:48.750000Z\", \"playDuration\": \"PT16S\"}, {\"titleId\": \"CUSA45272_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:06:49.460000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:25:30.620000Z\", \"playDuration\": \"PT18M37S\"}, {\"titleId\": \"CUSA45273_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:45:02.450000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:06:47.440000Z\", \"playDuration\": \"PT18M16S\"}, {\"titleId\": \"CUSA45270_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:25:45.300000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:45:00.350000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA45271_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T11:51:44.560000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:25:43.170000Z\", \"playDuration\": \"PT28M27S\"}, {\"titleId\": \"CUSA41266_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"lastPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA05282_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:50:19.000000Z\", \"lastPlayedDateTime\": \"2023-09-24T01:16:29.560000Z\", \"playDuration\": \"PT25M54S\"}, {\"titleId\": \"PPSA05283_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:21:56.940000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:49:45.090000Z\", \"playDuration\": \"PT27M29S\"}, {\"titleId\": \"PPSA05284_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:37:45.710000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:21:54.670000Z\", \"playDuration\": \"PT25M48S\"}, {\"titleId\": \"CUSA30403_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:07:51.580000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:37:31.630000Z\", \"playDuration\": \"PT27M45S\"}, {\"titleId\": \"CUSA30404_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T22:22:49.260000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:07:49.270000Z\", \"playDuration\": \"PT37M31S\"}, {\"titleId\": \"CUSA30402_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:24:24.920000Z\", \"lastPlayedDateTime\": \"2023-09-23T05:11:11.690000Z\", \"playDuration\": \"PT44M16S\"}, {\"titleId\": \"PPSA08825_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:05:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:18:14.920000Z\", \"playDuration\": \"PT12M55S\"}, {\"titleId\": \"CUSA35046_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T03:49:05.630000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:05:11.840000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA35045_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T02:17:12.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T03:19:31.220000Z\", \"playDuration\": \"PT1H1M39S\"}, {\"titleId\": \"PPSA18704_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T01:31:37.000000Z\", \"lastPlayedDateTime\": \"2023-09-23T02:12:24.380000Z\", \"playDuration\": \"PT40M37S\"}, {\"titleId\": \"PPSA18703_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:58:27.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T01:31:35.250000Z\", \"playDuration\": \"PT29M33S\"}, {\"titleId\": \"PPSA18705_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:26:14.510000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:58:24.920000Z\", \"playDuration\": \"PT30M14S\"}, {\"titleId\": \"PPSA18702_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T23:44:37.250000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:26:03.050000Z\", \"playDuration\": \"PT41M17S\"}, {\"titleId\": \"PPSA16992_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:47:17.250000Z\", \"lastPlayedDateTime\": \"2023-09-22T14:14:47.020000Z\", \"playDuration\": \"PT17M48S\"}, {\"titleId\": \"PPSA16991_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:25:46.650000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:44:48.490000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA43856_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T12:59:02.770000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:25:44.680000Z\", \"playDuration\": \"PT19M4S\"}, {\"titleId\": \"CUSA43857_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:54:08.800000Z\", \"lastPlayedDateTime\": \"2023-09-22T12:59:00.730000Z\", \"playDuration\": \"PT47M14S\"}, {\"titleId\": \"PPSA17797_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:50:59.310000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:53:42.190000Z\", \"playDuration\": \"PT2M27S\"}, {\"titleId\": \"PPSA17798_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:48:06.950000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:50:57.150000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA17800_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:45:12.760000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:48:04.720000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17799_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:41:36.610000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:44:34.170000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44504_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:38:10.130000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:41:34.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44505_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:34:57.570000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:38:06.910000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44502_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:17:56.670000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:34:55.370000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44503_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:14:13.120000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:17:54.550000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA12631_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:08:04.520000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:10:20.550000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA12632_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:05:39.530000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:08:02.510000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA39593_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:03:31.820000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:05:37.560000Z\", \"playDuration\": \"PT2M\"}, {\"titleId\": \"CUSA39594_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:01:10.190000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:03:29.520000Z\", \"playDuration\": \"PT2M13S\"}, {\"titleId\": \"CUSA30727_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T14:13:33.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T14:21:16.530000Z\", \"playDuration\": \"PT7M32S\"}, {\"titleId\": \"CUSA45044_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:07:24.850000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:30:33.830000Z\", \"playDuration\": \"PT8M34S\"}, {\"titleId\": \"PPSA15534_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:46:18.000000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:08:39.680000Z\", \"playDuration\": \"PT11M41S\"}, {\"titleId\": \"PPSA15535_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:31:38.390000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:46:16.010000Z\", \"playDuration\": \"PT12M27S\"}, {\"titleId\": \"CUSA42544_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:12:37.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:31:27.520000Z\", \"playDuration\": \"PT14M33S\"}, {\"titleId\": \"CUSA42545_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:51:16.840000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:12:29.600000Z\", \"playDuration\": \"PT18M3S\"}, {\"titleId\": \"PPSA18252_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:20:53.870000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:43:43.160000Z\", \"playDuration\": \"PT19M23S\"}, {\"titleId\": \"PPSA18253_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:00:08.670000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:19:50.880000Z\", \"playDuration\": \"PT19M37S\"}, {\"titleId\": \"CUSA44920_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:31:39.500000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:00:06.780000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA44921_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:09:18.140000Z\", \"lastPlayedDateTime\": \"2023-09-21T10:30:44.750000Z\", \"playDuration\": \"PT21M22S\"}, {\"titleId\": \"CUSA45061_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:00:24.530000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:06:52.310000Z\", \"playDuration\": \"PT6M25S\"}, {\"titleId\": \"CUSA45060_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T13:47:30.550000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:00:23.130000Z\", \"playDuration\": \"PT12M44S\"}, {\"titleId\": \"CUSA45124_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:33:19.650000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:42:28.800000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"CUSA45123_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:19:41.950000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:33:18.070000Z\", \"playDuration\": \"PT8M7S\"}, {\"titleId\": \"CUSA45328_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:09:32.030000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:18:29.960000Z\", \"playDuration\": \"PT2M34S\"}, {\"titleId\": \"CUSA45327_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:04:22.870000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:09:27.940000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA45326_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:02:36.980000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:04:18.610000Z\", \"playDuration\": \"PT1M32S\"}, {\"titleId\": \"CUSA45325_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T12:59:20.940000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:02:32.340000Z\", \"playDuration\": \"PT3M3S\"}, {\"titleId\": \"CUSA27311_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T00:35:04.450000Z\", \"lastPlayedDateTime\": \"2023-09-19T12:59:01.690000Z\", \"playDuration\": \"PT4H51M48S\"}, {\"titleId\": \"CUSA45128_00\", \"name\": \"Only Way Up! Parkour Jump Simulator\", \"localizedName\": \"Only Way Up! Parkour Jump Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009173, \"titleIds\": [\"CUSA45128_00\", \"CUSA45129_00\"], \"name\": \"Only Way Up! Parkour Jump Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PARTY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Only Way Up! Parkour Jump Simulator\", \"uk-UA\": \"Only Way Up! Parkour Jump Simulator\", \"de-DE\": \"Only Way Up! Parkour Jump Simulator\", \"en-US\": \"Only Way Up! Parkour Jump Simulator\", \"ko-KR\": \"Only Way Up! Parkour Jump Simulator\", \"pt-BR\": \"Only Way Up! Parkour Jump Simulator\", \"es-ES\": \"Only Way Up! Parkour Jump Simulator\", \"ar-AE\": \"Only Way Up! Parkour Jump Simulator\", \"no-NO\": \"Only Way Up! Parkour Jump Simulator\", \"fr-CA\": \"Only Way Up! Parkour Jump Simulator\", \"it-IT\": \"Only Way Up! Parkour Jump Simulator\", \"pl-PL\": \"Only Way Up! Parkour Jump Simulator\", \"ru-RU\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hans\": \"Only Way Up! Parkour Jump Simulator\", \"nl-NL\": \"Only Way Up! Parkour Jump Simulator\", \"pt-PT\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hant\": \"Only Way Up! Parkour Jump Simulator\", \"sv-SE\": \"Only Way Up! Parkour Jump Simulator\", \"da-DK\": \"Only Way Up! Parkour Jump Simulator\", \"tr-TR\": \"Only Way Up! Parkour Jump Simulator\", \"fr-FR\": \"Only Way Up! Parkour Jump Simulator\", \"en-GB\": \"Only Way Up! Parkour Jump Simulator\", \"es-419\": \"Only Way Up! Parkour Jump Simulator\", \"ja-JP\": \"Only Way Up! Parkour Jump Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T05:37:31.060000Z\", \"lastPlayedDateTime\": \"2023-09-18T06:59:54.250000Z\", \"playDuration\": \"PT1H19M7S\"}, {\"titleId\": \"PPSA14313_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T13:05:55.100000Z\", \"lastPlayedDateTime\": \"2023-09-18T05:37:28.780000Z\", \"playDuration\": \"PT4H17S\"}, {\"titleId\": \"PPSA17410_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:55:26.290000Z\", \"lastPlayedDateTime\": \"2023-09-16T12:02:11.340000Z\", \"playDuration\": \"PT6M38S\"}, {\"titleId\": \"PPSA17411_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:46:07.720000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:55:23.820000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA12629_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:38:06.180000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:45:46.860000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"PPSA12630_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:36:09.630000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:38:04.150000Z\", \"playDuration\": \"PT1M43S\"}, {\"titleId\": \"CUSA39591_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:24:24.830000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:36:07.890000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA39592_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:21:02.590000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:24:22.820000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA18086_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:13:47.910000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:18:32.390000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA35689_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:14:15.850000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:16:23.540000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA35690_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:28:39.390000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:15:22.900000Z\", \"playDuration\": \"PT51S\"}, {\"titleId\": \"PPSA18085_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:09:17.000000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:13:45.570000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA35896_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:48:35.490000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:54:35.730000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35895_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:43:13.870000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:48:33.500000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA35897_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:40:04.220000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:43:11.720000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA35898_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:31:07.900000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:40:02.310000Z\", \"playDuration\": \"PT8M48S\"}, {\"titleId\": \"PPSA02342_00\", \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"localizedName\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 234689, \"titleIds\": [\"CUSA16746_00\", \"CUSA26351_00\", \"CUSA26350_00\", \"CUSA16742_00\", \"PPSA02424_00\", \"CUSA16743_00\", \"PPSA02342_00\", \"PPSA02343_00\", \"PPSA02423_00\"], \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"uk-UA\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"de-DE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-US\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"ko-KR\": \"It Takes Two PS4\\u2122\\uc640 PS5\\u2122\", \"pt-BR\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"es-ES\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ar-AE\": \"It Takes Two PS4\\u2122\\u200e \\u0648PS5\\u2122\\u200e\", \"no-NO\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"fr-CA\": \"It Takes Two, PS4\\u2122 et PS5\\u2122\", \"it-IT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"pl-PL\": \"It Takes Two na PS4\\u2122 i PS5\\u2122\", \"ru-RU\": \"It Takes Two PS4\\u2122 \\u0438 PS5\\u2122\", \"zh-Hans\": \"\\u53cc\\u4eba\\u6210\\u884c PS4\\u2122 \\u548c PS5\\u2122\", \"nl-NL\": \"It Takes Two PS4\\u2122 en PS5\\u2122\", \"pt-PT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"zh-Hant\": \"\\u300a\\u96d9\\u4eba\\u6210\\u884c\\u300bPS4\\u2122 & PS5\\u2122\", \"sv-SE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"da-DK\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"tr-TR\": \"It Takes Two PS4\\u2122 ve PS5\\u2122\", \"fr-FR\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-GB\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"es-419\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ja-JP\": \"\\u300cIt Takes Two\\u300dPS4\\u2122 & PS5\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T10:20:23.300000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:20:23.000000Z\", \"playDuration\": \"PT2H42M52S\"}, {\"titleId\": \"PPSA15565_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T09:58:36.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T10:47:49.320000Z\", \"playDuration\": \"PT48M52S\"}, {\"titleId\": \"PPSA15566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T08:39:02.370000Z\", \"lastPlayedDateTime\": \"2023-09-10T09:09:48.510000Z\", \"playDuration\": \"PT29M43S\"}, {\"titleId\": \"CUSA42567_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:52:25.210000Z\", \"lastPlayedDateTime\": \"2023-09-10T08:38:38.870000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:04:39.770000Z\", \"lastPlayedDateTime\": \"2023-09-10T07:43:59.580000Z\", \"playDuration\": \"PT38M42S\"}, {\"titleId\": \"CUSA45018_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:23:48.690000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:44:22.550000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA45019_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:11:57.200000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:23:44.820000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"PPSA15588_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:41:02.130000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:07:21.980000Z\", \"playDuration\": \"PT22M54S\"}, {\"titleId\": \"PPSA15589_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:16:47.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:41:00.200000Z\", \"playDuration\": \"PT23M14S\"}, {\"titleId\": \"PPSA15586_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:49:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:12:42.890000Z\", \"playDuration\": \"PT22M59S\"}, {\"titleId\": \"PPSA15587_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:16:41.430000Z\", \"lastPlayedDateTime\": \"2023-09-10T04:49:12.340000Z\", \"playDuration\": \"PT23M29S\"}, {\"titleId\": \"CUSA42600_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T02:19:16.080000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:41:59.070000Z\", \"playDuration\": \"PT22M30S\"}, {\"titleId\": \"CUSA42599_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:55:14.280000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:18:10.940000Z\", \"playDuration\": \"PT22M52S\"}, {\"titleId\": \"CUSA42595_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:29:11.910000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:53:44.290000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"CUSA42601_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T00:21:45.740000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:29:10.200000Z\", \"playDuration\": \"PT1H5M14S\"}, {\"titleId\": \"PPSA17492_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:09:19.700000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:10:04.600000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA17491_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:51.300000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:09:17.240000Z\", \"playDuration\": \"PT15S\"}, {\"titleId\": \"PPSA17493_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:22.000000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:48.810000Z\", \"playDuration\": \"PT20S\"}, {\"titleId\": \"PPSA17490_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:07:59.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:20.730000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"CUSA44265_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:52:08.970000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:07:54.850000Z\", \"playDuration\": \"PT15M41S\"}, {\"titleId\": \"CUSA44264_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:38:05.240000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:52:06.890000Z\", \"playDuration\": \"PT13M17S\"}, {\"titleId\": \"CUSA44266_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:23:34.910000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:38:00.590000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"CUSA44263_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:53:37.370000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:14:57.180000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"PPSA17357_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:47:43.660000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:52:38.520000Z\", \"playDuration\": \"PT1M33S\"}, {\"titleId\": \"PPSA17358_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:40:33.480000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:47:41.530000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA17359_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:31:00.980000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:40:31.550000Z\", \"playDuration\": \"PT9M24S\"}, {\"titleId\": \"PPSA17360_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:28:04.140000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:30:58.910000Z\", \"playDuration\": \"PT2M19S\"}, {\"titleId\": \"CUSA44173_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T11:59:31.350000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:25:46.520000Z\", \"playDuration\": \"PT25M52S\"}, {\"titleId\": \"CUSA44174_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T10:33:51.040000Z\", \"lastPlayedDateTime\": \"2023-09-09T11:59:29.370000Z\", \"playDuration\": \"PT31M45S\"}, {\"titleId\": \"CUSA44171_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T23:57:10.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T00:37:08.840000Z\", \"playDuration\": \"PT39M43S\"}, {\"titleId\": \"CUSA44172_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T22:21:02.750000Z\", \"lastPlayedDateTime\": \"2023-09-08T23:25:25.940000Z\", \"playDuration\": \"PT1H3M34S\"}, {\"titleId\": \"PPSA01652_00\", \"name\": \"YouTube\", \"localizedName\": \"YouTube\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"category\": \"ps5_native_media_app\", \"service\": \"other\", \"playCount\": 11, \"concept\": {\"id\": 205453, \"titleIds\": [\"CUSA06021_00\", \"PPSA01650_00\", \"PPSA01651_00\", \"CUSA01065_00\", \"PPSA01652_00\", \"CUSA01015_00\", \"CUSA01034_00\", \"CUSA01116_00\", \"CUSA15375_00\"], \"name\": \"YouTube\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"YouTube\", \"uk-UA\": \"YouTube\", \"de-DE\": \"YouTube\", \"en-US\": \"YouTube\", \"ko-KR\": \"YouTube\", \"pt-BR\": \"YouTube\", \"es-ES\": \"YouTube\", \"ar-AE\": \"YouTube\", \"no-NO\": \"YouTube\", \"fr-CA\": \"YouTube\", \"it-IT\": \"YouTube\", \"pl-PL\": \"YouTube\", \"ru-RU\": \"YouTube\", \"zh-Hans\": \"YouTube\", \"nl-NL\": \"YouTube\", \"pt-PT\": \"YouTube\", \"zh-Hant\": \"YouTube\", \"sv-SE\": \"YouTube\", \"da-DK\": \"YouTube\", \"tr-TR\": \"YouTube\", \"fr-FR\": \"YouTube\", \"en-GB\": \"YouTube\", \"es-419\": \"YouTube\", \"ja-JP\": \"YouTube\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-09-05T15:20:21.410000Z\", \"lastPlayedDateTime\": \"2023-09-08T12:54:55.580000Z\", \"playDuration\": \"PT8H50M25S\"}, {\"titleId\": \"PPSA17316_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:10:39.520000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:23:17.640000Z\", \"playDuration\": \"PT2M36S\"}, {\"titleId\": \"CUSA44132_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:00:47.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:10:35.860000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA17487_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:01:28.430000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:05:39.230000Z\", \"playDuration\": \"PT3M56S\"}, {\"titleId\": \"PPSA17261_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:57:19.390000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:01:25.180000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"CUSA44092_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:52:55.770000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:57:15.440000Z\", \"playDuration\": \"PT4M13S\"}, {\"titleId\": \"CUSA44093_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:44:58.280000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:52:51.740000Z\", \"playDuration\": \"PT6M40S\"}, {\"titleId\": \"PPSA18331_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:34:52.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:44:16.970000Z\", \"playDuration\": \"PT9M11S\"}, {\"titleId\": \"PPSA18330_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:06:07.260000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:34:50.070000Z\", \"playDuration\": \"PT14M28S\"}, {\"titleId\": \"PPSA18332_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:56:54.970000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:06:04.280000Z\", \"playDuration\": \"PT7M17S\"}, {\"titleId\": \"CUSA45021_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:52:04.130000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:56:51.140000Z\", \"playDuration\": \"PT4M26S\"}, {\"titleId\": \"CUSA45020_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:33:47.420000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:52:00.490000Z\", \"playDuration\": \"PT17M5S\"}, {\"titleId\": \"CUSA44885_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:20:34.610000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:33:43.650000Z\", \"playDuration\": \"PT10M23S\"}, {\"titleId\": \"PPSA17830_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:16:20.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:19:44.910000Z\", \"playDuration\": \"PT3M4S\"}], \"nextOffset\": 200, \"previousOffset\": 0, \"totalItemCount\": 13572}"
}
}
},
@@ -190,56 +187,56 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:11 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive",
"Transfer-Encoding"
],
"X-Psn-Request-Id": [
- "0b8c6230-83f6-1031-9280-1976f53387d1"
+ "90e89b70-94a9-1031-ac1d-9cb4314d8580"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "0b8c6230-83f6-1031-927f-1976f53387d1"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "90e89b70-94a9-1031-ac1c-9cb4314d8580"
],
"Transfer-Encoding": [
"chunked"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:11 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:01 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:01 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"CUSA44539_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:03:09.850000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:05:31.350000Z\", \"playDuration\": \"PT2M12S\"}, {\"titleId\": \"CUSA44469_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:00:59.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:03:06.830000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44538_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:53:54.460000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:00:56.580000Z\", \"playDuration\": \"PT6M39S\"}, {\"titleId\": \"PPSA17826_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:48:20.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:53:51.980000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"PPSA17824_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:41:29.220000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:48:18.010000Z\", \"playDuration\": \"PT6M32S\"}, {\"titleId\": \"PPSA17827_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:37:48.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:41:26.360000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA44537_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:13:40.480000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:21:06.490000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA44536_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:07:29.100000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:13:36.380000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA44289_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:02:51.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:07:25.530000Z\", \"playDuration\": \"PT4M10S\"}, {\"titleId\": \"PPSA12636_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:52:09.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:59:57.160000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"PPSA12635_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:45:09.310000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:52:07.730000Z\", \"playDuration\": \"PT5M39S\"}, {\"titleId\": \"CUSA39597_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:36:15.930000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:45:07.210000Z\", \"playDuration\": \"PT8M28S\"}, {\"titleId\": \"CUSA39598_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:28:20.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:34:07.560000Z\", \"playDuration\": \"PT5M44S\"}, {\"titleId\": \"CUSA35929_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:06:51.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:10:48.650000Z\", \"playDuration\": \"PT2M51S\"}, {\"titleId\": \"CUSA35927_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:55:27.660000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:06:49.680000Z\", \"playDuration\": \"PT2M42S\"}, {\"titleId\": \"CUSA35928_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:50:20.670000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:55:25.890000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA35930_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:42:47.530000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:50:18.370000Z\", \"playDuration\": \"PT4M47S\"}, {\"titleId\": \"CUSA43300_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T02:30:56.320000Z\", \"lastPlayedDateTime\": \"2023-09-05T12:01:45.120000Z\", \"playDuration\": \"PT1H18M24S\"}, {\"titleId\": \"PPSA15659_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T07:16:15.080000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:34:43.490000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA15658_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:58:04.480000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:16:13.040000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"PPSA15660_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:42:06.700000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:57:13.930000Z\", \"playDuration\": \"PT14M59S\"}, {\"titleId\": \"PPSA15661_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:23:46.630000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:39:42.680000Z\", \"playDuration\": \"PT15M48S\"}, {\"titleId\": \"CUSA42655_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:02:28.370000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:21:42.960000Z\", \"playDuration\": \"PT18M57S\"}, {\"titleId\": \"CUSA42654_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:33:40.110000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:02:26.770000Z\", \"playDuration\": \"PT19M33S\"}, {\"titleId\": \"CUSA42653_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:10:28.250000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:33:38.520000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA42656_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T04:50:00.290000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:10:26.670000Z\", \"playDuration\": \"PT19M59S\"}, {\"titleId\": \"CUSA43299_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:45:12.060000Z\", \"lastPlayedDateTime\": \"2023-09-05T02:30:53.330000Z\", \"playDuration\": \"PT1H51M35S\"}, {\"titleId\": \"PPSA18524_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:21:31.340000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:38:46.100000Z\", \"playDuration\": \"PT16M46S\"}, {\"titleId\": \"PPSA18522_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:05:43.450000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:21:28.090000Z\", \"playDuration\": \"PT13M51S\"}, {\"titleId\": \"PPSA18523_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:43:57.260000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:05:36.640000Z\", \"playDuration\": \"PT19M45S\"}, {\"titleId\": \"PPSA18525_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:10:10.680000Z\", \"lastPlayedDateTime\": \"2023-09-04T10:43:54.110000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA35878_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-31T01:28:02.340000Z\", \"lastPlayedDateTime\": \"2023-08-31T01:31:12.420000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA35880_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:27:49.620000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:31:16.680000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA35879_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:06:50.540000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:27:47.970000Z\", \"playDuration\": \"PT8M52S\"}, {\"titleId\": \"CUSA35882_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:10:00.880000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:18:38.520000Z\", \"playDuration\": \"PT7M11S\"}, {\"titleId\": \"CUSA43655_00\", \"name\": \"A Castle Full of Cats\", \"localizedName\": \"A Castle Full of Cats\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008505, \"titleIds\": [\"CUSA43656_00\", \"CUSA43657_00\", \"CUSA43655_00\", \"CUSA43654_00\", \"PPSA16751_00\", \"PPSA16752_00\", \"PPSA16753_00\", \"PPSA16754_00\"], \"name\": \"A Castle Full of Cats\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Castle Full of Cats\", \"uk-UA\": \"A Castle Full of Cats\", \"de-DE\": \"A Castle Full of Cats\", \"en-US\": \"A Castle Full of Cats\", \"ko-KR\": \"A Castle Full of Cats\", \"pt-BR\": \"A Castle Full of Cats\", \"es-ES\": \"A Castle Full of Cats\", \"ar-AE\": \"A Castle Full of Cats\", \"no-NO\": \"A Castle Full of Cats\", \"fr-CA\": \"A Castle Full of Cats\", \"it-IT\": \"A Castle Full of Cats\", \"pl-PL\": \"A Castle Full of Cats\", \"ru-RU\": \"A Castle Full of Cats\", \"zh-Hans\": \"A Castle Full of Cats\", \"nl-NL\": \"A Castle Full of Cats\", \"pt-PT\": \"A Castle Full of Cats\", \"zh-Hant\": \"A Castle Full of Cats\", \"sv-SE\": \"A Castle Full of Cats\", \"da-DK\": \"A Castle Full of Cats\", \"tr-TR\": \"A Castle Full of Cats\", \"fr-FR\": \"A Castle Full of Cats\", \"en-GB\": \"A Castle Full of Cats\", \"es-419\": \"A Castle Full of Cats\", \"ja-JP\": \"A Castle Full of Cats\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-29T12:04:23.090000Z\", \"lastPlayedDateTime\": \"2023-08-29T13:18:14.760000Z\", \"playDuration\": \"PT1H11M24S\"}, {\"titleId\": \"PPSA15088_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:31:57.150000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:37:59.920000Z\", \"playDuration\": \"PT5M59S\"}, {\"titleId\": \"PPSA15089_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:25:54.390000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:31:54.710000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA42087_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:20:15.450000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:25:52.050000Z\", \"playDuration\": \"PT5M32S\"}, {\"titleId\": \"CUSA42086_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:14:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:20:13.540000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"PPSA17259_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:48:13.240000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:11:28.300000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"PPSA17260_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:30:44.730000Z\", \"lastPlayedDateTime\": \"2023-08-28T10:48:10.290000Z\", \"playDuration\": \"PT16M33S\"}, {\"titleId\": \"CUSA44090_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-27T06:10:38.830000Z\", \"lastPlayedDateTime\": \"2023-08-27T06:28:14.960000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"CUSA44091_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-26T12:03:36.400000Z\", \"lastPlayedDateTime\": \"2023-08-26T12:22:40.890000Z\", \"playDuration\": \"PT18M50S\"}, {\"titleId\": \"PPSA11404_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:58:14.080000Z\", \"lastPlayedDateTime\": \"2023-08-25T13:07:38.210000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA11405_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:47:14.550000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:58:11.550000Z\", \"playDuration\": \"PT8M5S\"}, {\"titleId\": \"CUSA38142_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:39:20.260000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:46:57.570000Z\", \"playDuration\": \"PT7M12S\"}, {\"titleId\": \"CUSA38143_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:31:21.820000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:39:18.200000Z\", \"playDuration\": \"PT7M43S\"}, {\"titleId\": \"PPSA15850_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:47:25.670000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:56:18.360000Z\", \"playDuration\": \"PT8M40S\"}, {\"titleId\": \"PPSA15849_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:39:36.990000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:47:23.220000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA42797_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:29:21.880000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:39:34.340000Z\", \"playDuration\": \"PT10M7S\"}, {\"titleId\": \"CUSA42796_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:23:45.720000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:29:19.570000Z\", \"playDuration\": \"PT5M27S\"}, {\"titleId\": \"PPSA17939_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:13:05.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:22:58.540000Z\", \"playDuration\": \"PT9M42S\"}, {\"titleId\": \"PPSA17940_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:05:09.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:13:03.130000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA17938_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:55:22.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:05:06.940000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA17937_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:47:13.510000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:55:19.950000Z\", \"playDuration\": \"PT7M55S\"}, {\"titleId\": \"CUSA44667_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:35:27.810000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:47:04.990000Z\", \"playDuration\": \"PT11M20S\"}, {\"titleId\": \"CUSA44668_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:22:31.130000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:32:25.510000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"CUSA44665_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:08:02.040000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:21:54.000000Z\", \"playDuration\": \"PT12M5S\"}, {\"titleId\": \"CUSA44666_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:36:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-25T09:00:09.990000Z\", \"playDuration\": \"PT23M15S\"}, {\"titleId\": \"PPSA12608_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:34:26.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:35:40.150000Z\", \"playDuration\": \"PT59S\"}, {\"titleId\": \"PPSA12609_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:32:59.440000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:34:24.610000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA39566_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:31:01.750000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:32:56.970000Z\", \"playDuration\": \"PT1M41S\"}, {\"titleId\": \"CUSA39567_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:28:47.310000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:30:59.660000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA15845_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:22:20.830000Z\", \"playDuration\": \"PT11M1S\"}, {\"titleId\": \"PPSA15846_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:03:55.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:10:53.940000Z\", \"playDuration\": \"PT6M35S\"}, {\"titleId\": \"CUSA42793_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-24T13:32:06.290000Z\", \"lastPlayedDateTime\": \"2023-08-24T13:40:18.520000Z\", \"playDuration\": \"PT7M53S\"}, {\"titleId\": \"CUSA42792_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T12:51:09.180000Z\", \"lastPlayedDateTime\": \"2023-08-23T13:09:19.960000Z\", \"playDuration\": \"PT6M41S\"}, {\"titleId\": \"PPSA14371_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:39:30.130000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:51:00.380000Z\", \"playDuration\": \"PT11M4S\"}, {\"titleId\": \"PPSA14372_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:23:56.210000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:39:26.940000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA41333_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:13:10.850000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:23:40.820000Z\", \"playDuration\": \"PT9M4S\"}, {\"titleId\": \"CUSA41334_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:55:27.400000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:13:07.660000Z\", \"playDuration\": \"PT16M44S\"}, {\"titleId\": \"CUSA35905_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:42:52.720000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:50:13.920000Z\", \"playDuration\": \"PT6M52S\"}, {\"titleId\": \"CUSA35906_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:37:11.610000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:42:50.930000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"CUSA35904_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:34:42.690000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:37:09.650000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35903_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:26:02.800000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:33:57.870000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA15372_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T15:32:45.100000Z\", \"lastPlayedDateTime\": \"2023-08-22T16:13:43.660000Z\", \"playDuration\": \"PT40M46S\"}, {\"titleId\": \"PPSA15373_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T13:23:37.780000Z\", \"lastPlayedDateTime\": \"2023-08-22T15:32:42.370000Z\", \"playDuration\": \"PT51M24S\"}, {\"titleId\": \"CUSA42384_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T12:40:59.320000Z\", \"lastPlayedDateTime\": \"2023-08-22T13:23:35.230000Z\", \"playDuration\": \"PT42M1S\"}, {\"titleId\": \"CUSA42385_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-21T12:45:47.890000Z\", \"lastPlayedDateTime\": \"2023-08-21T14:02:59.610000Z\", \"playDuration\": \"PT1H16M21S\"}, {\"titleId\": \"PPSA08893_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T06:18:57.230000Z\", \"lastPlayedDateTime\": \"2023-08-20T07:11:39.690000Z\", \"playDuration\": \"PT46M25S\"}, {\"titleId\": \"CUSA33956_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T05:03:12.240000Z\", \"lastPlayedDateTime\": \"2023-08-20T06:18:54.140000Z\", \"playDuration\": \"PT1H12M38S\"}, {\"titleId\": \"CUSA44220_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:33:35.270000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:45:11.520000Z\", \"playDuration\": \"PT11M32S\"}, {\"titleId\": \"CUSA44219_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:22:43.700000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:33:32.880000Z\", \"playDuration\": \"PT8M24S\"}, {\"titleId\": \"CUSA44789_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:09:20.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:13:13.140000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44788_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:05:27.280000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:09:18.250000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA37318_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:47:21.840000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:02:36.990000Z\", \"playDuration\": \"PT12M53S\"}, {\"titleId\": \"PPSA14317_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:43:00.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T03:47:19.800000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"PPSA14055_00\", \"name\": \"I'm in Love With Your Dead Grandmother\", \"localizedName\": \"I'm in Love With Your Dead Grandmother\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005437, \"titleIds\": [\"PPSA13939_00\", \"PPSA17890_00\", \"CUSA34839_00\", \"CUSA34623_00\", \"CUSA34838_00\", \"PPSA14055_00\", \"PPSA14056_00\", \"CUSA35035_00\", \"CUSA34815_00\"], \"name\": \"I'm in Love With Your Dead Grandmother\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'm in Love With Your Dead Grandmother\", \"uk-UA\": \"I'm in Love With Your Dead Grandmother\", \"de-DE\": \"I'm in Love With Your Dead Grandmother\", \"en-US\": \"I'm in Love With Your Dead Grandmother\", \"ko-KR\": \"I'm in Love With Your Dead Grandmother\", \"pt-BR\": \"I'm in Love With Your Dead Grandmother\", \"es-ES\": \"I'm in Love With Your Dead Grandmother\", \"ar-AE\": \"I'm in Love With Your Dead Grandmother\", \"no-NO\": \"I'm in Love With Your Dead Grandmother\", \"fr-CA\": \"I'm in Love With Your Dead Grandmother\", \"it-IT\": \"I'm in Love With Your Dead Grandmother\", \"pl-PL\": \"I'm in Love With Your Dead Grandmother\", \"ru-RU\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hans\": \"I'm in Love With Your Dead Grandmother\", \"nl-NL\": \"I'm in Love With Your Dead Grandmother\", \"pt-PT\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hant\": \"I'm in Love With Your Dead Grandmother\", \"sv-SE\": \"I'm in Love With Your Dead Grandmother\", \"da-DK\": \"I'm in Love With Your Dead Grandmother\", \"tr-TR\": \"I'm in Love With Your Dead Grandmother\", \"fr-FR\": \"I'm in Love With Your Dead Grandmother\", \"en-GB\": \"I'm in Love With Your Dead Grandmother\", \"es-419\": \"I'm in Love With Your Dead Grandmother\", \"ja-JP\": \"I'm in Love With Your Dead Grandmother\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:16:06.920000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:38:47.520000Z\", \"playDuration\": \"PT22M37S\"}, {\"titleId\": \"PPSA15232_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:06:22.290000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:15:26.560000Z\", \"playDuration\": \"PT9M\"}, {\"titleId\": \"CUSA42237_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:22:56.750000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:05:37.690000Z\", \"playDuration\": \"PT42M23S\"}, {\"titleId\": \"PPSA18061_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:16:58.600000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:22:06.190000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA09029_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:10:00.580000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:16:56.650000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"PPSA18357_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:57:07.370000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:07:25.300000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"PPSA17960_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:18:09.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:27:02.710000Z\", \"playDuration\": \"PT8M35S\"}, {\"titleId\": \"CUSA44686_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:07:34.230000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:17:50.940000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"CUSA44387_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T04:43:12.150000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:07:32.490000Z\", \"playDuration\": \"PT21M38S\"}, {\"titleId\": \"PPSA15767_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:34:34.760000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:40:32.440000Z\", \"playDuration\": \"PT5M21S\"}, {\"titleId\": \"PPSA18162_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:28:51.650000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:34:31.140000Z\", \"playDuration\": \"PT5M20S\"}, {\"titleId\": \"PPSA18163_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:23:17.000000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:28:47.960000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA15766_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:17:19.520000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:23:13.460000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"CUSA35869_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:05:34.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:09:28.510000Z\", \"playDuration\": \"PT3M36S\"}, {\"titleId\": \"CUSA35868_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:01:09.210000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:05:33.160000Z\", \"playDuration\": \"PT3M47S\"}, {\"titleId\": \"CUSA35867_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:54:07.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:01:07.550000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"CUSA35870_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:40:08.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:54:05.380000Z\", \"playDuration\": \"PT12M23S\"}, {\"titleId\": \"CUSA40973_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:55:50.550000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:39:40.120000Z\", \"playDuration\": \"PT8H52S\"}, {\"titleId\": \"CUSA40974_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:58:43.080000Z\", \"lastPlayedDateTime\": \"2023-08-18T17:20:32.980000Z\", \"playDuration\": \"PT1H4M6S\"}, {\"titleId\": \"PPSA12593_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:45:21.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:49:37.940000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA12594_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:36:37.880000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:45:18.940000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA39550_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:32:59.950000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:36:35.420000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA39551_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:26:00.590000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:32:58.080000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"PPSA16089_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T14:20:08.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T14:57:51.110000Z\", \"playDuration\": \"PT36M57S\"}, {\"titleId\": \"PPSA16088_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-17T10:28:15.000000Z\", \"lastPlayedDateTime\": \"2023-08-17T11:00:59.050000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA15396_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-16T10:40:30.670000Z\", \"lastPlayedDateTime\": \"2023-08-16T11:45:31.110000Z\", \"playDuration\": \"PT1H4M44S\"}, {\"titleId\": \"PPSA15397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-15T13:32:57.780000Z\", \"lastPlayedDateTime\": \"2023-08-15T14:08:19.350000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA42397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-14T10:15:44.800000Z\", \"lastPlayedDateTime\": \"2023-08-14T10:51:14.840000Z\", \"playDuration\": \"PT35M13S\"}, {\"titleId\": \"CUSA42993_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-13T10:10:46.540000Z\", \"lastPlayedDateTime\": \"2023-08-13T11:03:07.160000Z\", \"playDuration\": \"PT52M15S\"}, {\"titleId\": \"CUSA42994_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-12T10:59:35.600000Z\", \"lastPlayedDateTime\": \"2023-08-12T12:22:50.090000Z\", \"playDuration\": \"PT1H15M51S\"}, {\"titleId\": \"CUSA42398_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-11T11:04:30.400000Z\", \"lastPlayedDateTime\": \"2023-08-11T11:50:21.400000Z\", \"playDuration\": \"PT44M50S\"}, {\"titleId\": \"PPSA11451_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:57:20.610000Z\", \"lastPlayedDateTime\": \"2023-08-10T13:02:34.590000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA11450_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:39:28.910000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:57:04.960000Z\", \"playDuration\": \"PT16M40S\"}, {\"titleId\": \"CUSA38234_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:23:06.780000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:39:26.640000Z\", \"playDuration\": \"PT7M2S\"}, {\"titleId\": \"CUSA38235_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:15:59.540000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:23:04.700000Z\", \"playDuration\": \"PT6M43S\"}, {\"titleId\": \"CUSA35907_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:20:05.260000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:22:37.150000Z\", \"playDuration\": \"PT2M16S\"}, {\"titleId\": \"CUSA35909_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:11:22.620000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:19:47.760000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA35910_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:08:56.590000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:11:20.490000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA35908_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:06:02.130000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:08:54.480000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA43563_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:00:51.550000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:02:44.750000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA43564_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:57:59.280000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:00:49.780000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"PPSA10282_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:09:57.540000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:42:17.790000Z\", \"playDuration\": \"PT31M25S\"}, {\"titleId\": \"PPSA10283_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T11:31:38.240000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:04:45.790000Z\", \"playDuration\": \"PT33M3S\"}, {\"titleId\": \"CUSA36879_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T10:56:42.350000Z\", \"lastPlayedDateTime\": \"2023-08-09T11:30:07.390000Z\", \"playDuration\": \"PT33M20S\"}, {\"titleId\": \"CUSA36880_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:22:42.960000Z\", \"lastPlayedDateTime\": \"2023-08-08T13:40:58.060000Z\", \"playDuration\": \"PT1H16M43S\"}, {\"titleId\": \"CUSA14532_00\", \"name\": \"Human Fall Flat\", \"localizedName\": \"Human Fall Flat\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 227139, \"titleIds\": [\"PPSA02431_00\", \"CUSA43839_00\", \"CUSA07208_00\", \"PPSA02429_00\", \"CUSA07215_00\", \"CUSA14532_00\", \"PPSA02764_00\"], \"name\": \"Human Fall Flat\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Human Fall Flat\", \"uk-UA\": \"Human Fall Flat\", \"de-DE\": \"Human Fall Flat\", \"en-US\": \"Human Fall Flat\", \"ko-KR\": \"\\ud734\\uba3c: \\ud3f4 \\ud50c\\ub7ab\", \"pt-BR\": \"Human Fall Flat\", \"es-ES\": \"Human Fall Flat\", \"ar-AE\": \"Human Fall Flat\", \"no-NO\": \"Human Fall Flat\", \"fr-CA\": \"Human Fall Flat\", \"it-IT\": \"Human Fall Flat\", \"pl-PL\": \"Human Fall Flat\", \"ru-RU\": \"Human Fall Flat\", \"zh-Hans\": \"Human Fall Flat\", \"nl-NL\": \"Human Fall Flat\", \"pt-PT\": \"Human Fall Flat\", \"zh-Hant\": \"Human Fall Flat\", \"sv-SE\": \"Human Fall Flat\", \"da-DK\": \"Human Fall Flat\", \"tr-TR\": \"Human Fall Flat\", \"fr-FR\": \"Human Fall Flat\", \"en-GB\": \"Human Fall Flat\", \"es-419\": \"Human Fall Flat\", \"ja-JP\": \"\\u30d2\\u30e5\\u30fc\\u30de\\u30f3 \\u30d5\\u30a9\\u30fc\\u30eb \\u30d5\\u30e9\\u30c3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2019-09-16T16:41:27.000000Z\", \"lastPlayedDateTime\": \"2023-08-08T12:59:11.890000Z\", \"playDuration\": \"PT56H46M6S\"}, {\"titleId\": \"CUSA33743_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:16:35.620000Z\", \"lastPlayedDateTime\": \"2023-08-08T11:19:20.420000Z\", \"playDuration\": \"PT2M39S\"}, {\"titleId\": \"CUSA33742_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-07T11:25:29.840000Z\", \"lastPlayedDateTime\": \"2023-08-07T11:28:16.980000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA44672_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:47:26.760000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:49:24.090000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA44673_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:45:06.670000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:47:06.030000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA44670_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:42:04.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:45:04.710000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"CUSA44671_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:39:13.810000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:42:01.910000Z\", \"playDuration\": \"PT2M30S\"}, {\"titleId\": \"CUSA41271_00\", \"name\": \"Bunny Parking\", \"localizedName\": \"Bunny Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10002087, \"titleIds\": [\"CUSA26063_00\", \"CUSA26064_00\", \"CUSA41271_00\", \"CUSA41270_00\"], \"name\": \"Bunny Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bunny Parking\", \"uk-UA\": \"Bunny Parking\", \"de-DE\": \"Bunny Parking\", \"en-US\": \"Bunny Parking\", \"ko-KR\": \"Bunny Parking\", \"pt-BR\": \"Bunny Parking\", \"es-ES\": \"Bunny Parking\", \"ar-AE\": \"Bunny Parking\", \"no-NO\": \"Bunny Parking\", \"fr-CA\": \"Bunny Parking\", \"it-IT\": \"Bunny Parking\", \"pl-PL\": \"Bunny Parking\", \"ru-RU\": \"Bunny Parking\", \"zh-Hans\": \"Bunny Parking\", \"nl-NL\": \"Bunny Parking\", \"pt-PT\": \"Bunny Parking\", \"zh-Hant\": \"Bunny Parking\", \"sv-SE\": \"Bunny Parking\", \"da-DK\": \"Bunny Parking\", \"tr-TR\": \"Bunny Parking\", \"fr-FR\": \"Bunny Parking\", \"en-GB\": \"Bunny Parking\", \"es-419\": \"Bunny Parking\", \"ja-JP\": \"Bunny Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T13:24:42.360000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:33:03.790000Z\", \"playDuration\": \"PT4H30M19S\"}, {\"titleId\": \"PPSA15835_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T12:06:31.110000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:28:34.780000Z\", \"playDuration\": \"PT1H20M1S\"}, {\"titleId\": \"PPSA16675_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T11:38:34.000000Z\", \"lastPlayedDateTime\": \"2023-08-06T12:06:05.070000Z\", \"playDuration\": \"PT25M17S\"}, {\"titleId\": \"CUSA43596_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T10:24:27.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T11:38:31.110000Z\", \"playDuration\": \"PT43M48S\"}, {\"titleId\": \"PPSA12590_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:53:45.260000Z\", \"lastPlayedDateTime\": \"2023-08-06T06:12:15.750000Z\", \"playDuration\": \"PT10M56S\"}, {\"titleId\": \"PPSA12589_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:49:03.000000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:53:43.010000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA39547_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:43:55.540000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:48:30.530000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39546_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:40:02.490000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:43:53.530000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"PPSA14682_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:55:29.610000Z\", \"lastPlayedDateTime\": \"2023-08-02T12:02:15.530000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14683_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:50:21.950000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:55:27.540000Z\", \"playDuration\": \"PT4M46S\"}, {\"titleId\": \"CUSA41691_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:43:25.470000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:50:19.900000Z\", \"playDuration\": \"PT4M25S\"}, {\"titleId\": \"CUSA41690_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:35:16.660000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:43:23.270000Z\", \"playDuration\": \"PT7M51S\"}, {\"titleId\": \"PPSA15834_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T07:11:49.530000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:30:35.920000Z\", \"playDuration\": \"PT1H2S\"}, {\"titleId\": \"CUSA42787_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-01T11:19:37.890000Z\", \"lastPlayedDateTime\": \"2023-08-01T14:49:39.370000Z\", \"playDuration\": \"PT1H21M11S\"}, {\"titleId\": \"CUSA42786_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T11:45:35.030000Z\", \"lastPlayedDateTime\": \"2023-07-31T14:13:34.360000Z\", \"playDuration\": \"PT2H11M27S\"}, {\"titleId\": \"CUSA36408_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T02:50:13.870000Z\", \"lastPlayedDateTime\": \"2023-07-31T06:06:21.410000Z\", \"playDuration\": \"PT2H6M27S\"}, {\"titleId\": \"CUSA37213_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T00:10:27.140000Z\", \"lastPlayedDateTime\": \"2023-07-31T02:50:10.430000Z\", \"playDuration\": \"PT2H27M20S\"}, {\"titleId\": \"CUSA36406_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-30T11:35:56.350000Z\", \"lastPlayedDateTime\": \"2023-07-30T14:54:37.180000Z\", \"playDuration\": \"PT3H13M45S\"}, {\"titleId\": \"CUSA36407_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T11:18:20.110000Z\", \"lastPlayedDateTime\": \"2023-07-29T14:19:50.230000Z\", \"playDuration\": \"PT2H57M32S\"}, {\"titleId\": \"PPSA10327_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T06:20:40.140000Z\", \"lastPlayedDateTime\": \"2023-07-29T08:26:12.730000Z\", \"playDuration\": \"PT2H5M28S\"}, {\"titleId\": \"PPSA17417_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:45:28.370000Z\", \"lastPlayedDateTime\": \"2023-07-29T06:13:12.840000Z\", \"playDuration\": \"PT24M59S\"}, {\"titleId\": \"PPSA17416_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:17:18.550000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:45:25.690000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"CUSA44226_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:44:47.940000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:16:39.230000Z\", \"playDuration\": \"PT26M49S\"}, {\"titleId\": \"CUSA44225_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:03:20.540000Z\", \"lastPlayedDateTime\": \"2023-07-29T04:44:45.540000Z\", \"playDuration\": \"PT34M27S\"}, {\"titleId\": \"PPSA13337_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:42:34.800000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:48:29.640000Z\", \"playDuration\": \"PT5M30S\"}, {\"titleId\": \"CUSA44641_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:40:16.880000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:42:23.990000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA44642_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:35:19.290000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:40:15.010000Z\", \"playDuration\": \"PT4M17S\"}, {\"titleId\": \"CUSA44647_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:32:59.350000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:35:05.970000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA44648_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:29:48.530000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:32:57.480000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44645_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:06:54.330000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:29:37.630000Z\", \"playDuration\": \"PT22M35S\"}, {\"titleId\": \"CUSA44646_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:03:38.620000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:06:52.430000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"CUSA44643_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:00:51.100000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:03:07.590000Z\", \"playDuration\": \"PT2M10S\"}, {\"titleId\": \"CUSA44644_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:57:42.610000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:00:48.890000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44651_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:53:10.320000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:55:08.280000Z\", \"playDuration\": \"PT1M4S\"}, {\"titleId\": \"CUSA44650_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:50:26.310000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:53:07.920000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA44649_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:47:29.860000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:50:24.220000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA44652_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:43:42.390000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:47:27.710000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA36906_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T07:12:22.210000Z\", \"lastPlayedDateTime\": \"2023-07-28T15:19:44.130000Z\", \"playDuration\": \"PT1H43M32S\"}, {\"titleId\": \"PPSA17877_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:43:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T14:08:41.130000Z\", \"playDuration\": \"PT20M42S\"}, {\"titleId\": \"PPSA17876_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:14:58.560000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:43:00.810000Z\", \"playDuration\": \"PT21M57S\"}, {\"titleId\": \"PPSA17875_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:48:09.920000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:14:55.290000Z\", \"playDuration\": \"PT25M3S\"}, {\"titleId\": \"PPSA17878_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:20:00.820000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:45:33.140000Z\", \"playDuration\": \"PT23M55S\"}, {\"titleId\": \"PPSA17482_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:10:22.340000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:16:27.140000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"PPSA17481_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:59:14.380000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:10:19.320000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17480_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:49:38.140000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:58:53.660000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"PPSA17483_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:37:52.470000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:49:35.200000Z\", \"playDuration\": \"PT10M14S\"}, {\"titleId\": \"PPSA12604_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:15:19.390000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:20:07.690000Z\", \"playDuration\": \"PT4M44S\"}, {\"titleId\": \"PPSA12603_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:08:43.000000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:15:17.330000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA39561_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:02:29.800000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:08:41.890000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"CUSA39560_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:54:33.960000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:02:27.820000Z\", \"playDuration\": \"PT5M25S\"}, {\"titleId\": \"PPSA17413_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:36:12.510000Z\", \"lastPlayedDateTime\": \"2023-07-28T10:52:47.830000Z\", \"playDuration\": \"PT16M27S\"}, {\"titleId\": \"PPSA16327_00\", \"name\": \"Frightence\", \"localizedName\": \"Frightence\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004239, \"titleIds\": [\"CUSA31599_00\", \"CUSA31600_00\", \"PPSA16326_00\", \"PPSA16327_00\"], \"name\": \"Frightence\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Frightence\", \"uk-UA\": \"Frightence\", \"de-DE\": \"Frightence\", \"en-US\": \"Frightence\", \"ko-KR\": \"Frightence\", \"pt-BR\": \"Frightence\", \"es-ES\": \"Frightence\", \"ar-AE\": \"Frightence\", \"no-NO\": \"Frightence\", \"fr-CA\": \"Frightence\", \"it-IT\": \"Frightence\", \"pl-PL\": \"Frightence\", \"ru-RU\": \"Frightence\", \"zh-Hans\": \"Frightence\", \"nl-NL\": \"Frightence\", \"pt-PT\": \"Frightence\", \"zh-Hant\": \"Frightence\", \"sv-SE\": \"Frightence\", \"da-DK\": \"Frightence\", \"tr-TR\": \"Frightence\", \"fr-FR\": \"Frightence\", \"en-GB\": \"Frightence\", \"es-419\": \"Frightence\", \"ja-JP\": \"Frightence\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:51:47.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T09:09:30.480000Z\", \"playDuration\": \"PT17M28S\"}, {\"titleId\": \"PPSA17412_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:22:15.300000Z\", \"lastPlayedDateTime\": \"2023-07-28T08:33:27.790000Z\", \"playDuration\": \"PT10M21S\"}, {\"titleId\": \"PPSA10328_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T04:31:46.780000Z\", \"lastPlayedDateTime\": \"2023-07-28T07:10:55.560000Z\", \"playDuration\": \"PT1H20M55S\"}, {\"titleId\": \"PPSA10330_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T01:38:09.830000Z\", \"lastPlayedDateTime\": \"2023-07-28T04:25:11.820000Z\", \"playDuration\": \"PT2H18M57S\"}, {\"titleId\": \"CUSA36905_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T14:01:02.960000Z\", \"lastPlayedDateTime\": \"2023-07-27T15:29:50.520000Z\", \"playDuration\": \"PT1H27M55S\"}, {\"titleId\": \"CUSA36908_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T11:53:45.500000Z\", \"lastPlayedDateTime\": \"2023-07-27T14:01:00.500000Z\", \"playDuration\": \"PT2H5M34S\"}, {\"titleId\": \"CUSA27581_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-26T12:53:11.970000Z\", \"lastPlayedDateTime\": \"2023-07-27T11:28:26.190000Z\", \"playDuration\": \"PT5H41M48S\"}, {\"titleId\": \"PPSA15345_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T10:57:10.280000Z\", \"lastPlayedDateTime\": \"2023-07-25T12:30:03.830000Z\", \"playDuration\": \"PT1H30M\"}, {\"titleId\": \"CUSA42362_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T07:05:25.900000Z\", \"lastPlayedDateTime\": \"2023-07-25T10:44:54.290000Z\", \"playDuration\": \"PT2H39M11S\"}], \"nextOffset\": 400, \"previousOffset\": 199, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"PPSA17829_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:12:45.240000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:16:18.410000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"PPSA17828_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:05:34.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:12:42.580000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA44539_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:03:09.850000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:05:31.350000Z\", \"playDuration\": \"PT2M12S\"}, {\"titleId\": \"CUSA44469_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:00:59.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:03:06.830000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44538_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:53:54.460000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:00:56.580000Z\", \"playDuration\": \"PT6M39S\"}, {\"titleId\": \"PPSA17826_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:48:20.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:53:51.980000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"PPSA17824_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:41:29.220000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:48:18.010000Z\", \"playDuration\": \"PT6M32S\"}, {\"titleId\": \"PPSA17827_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:37:48.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:41:26.360000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA44537_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:13:40.480000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:21:06.490000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA44536_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:07:29.100000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:13:36.380000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA44289_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:02:51.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:07:25.530000Z\", \"playDuration\": \"PT4M10S\"}, {\"titleId\": \"PPSA12636_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:52:09.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:59:57.160000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"PPSA12635_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:45:09.310000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:52:07.730000Z\", \"playDuration\": \"PT5M39S\"}, {\"titleId\": \"CUSA39597_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:36:15.930000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:45:07.210000Z\", \"playDuration\": \"PT8M28S\"}, {\"titleId\": \"CUSA39598_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:28:20.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:34:07.560000Z\", \"playDuration\": \"PT5M44S\"}, {\"titleId\": \"CUSA35929_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:06:51.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:10:48.650000Z\", \"playDuration\": \"PT2M51S\"}, {\"titleId\": \"CUSA35927_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:55:27.660000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:06:49.680000Z\", \"playDuration\": \"PT2M42S\"}, {\"titleId\": \"CUSA35928_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:50:20.670000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:55:25.890000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA35930_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:42:47.530000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:50:18.370000Z\", \"playDuration\": \"PT4M47S\"}, {\"titleId\": \"CUSA43300_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T02:30:56.320000Z\", \"lastPlayedDateTime\": \"2023-09-05T12:01:45.120000Z\", \"playDuration\": \"PT1H18M24S\"}, {\"titleId\": \"PPSA15659_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T07:16:15.080000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:34:43.490000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA15658_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:58:04.480000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:16:13.040000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"PPSA15660_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:42:06.700000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:57:13.930000Z\", \"playDuration\": \"PT14M59S\"}, {\"titleId\": \"PPSA15661_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:23:46.630000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:39:42.680000Z\", \"playDuration\": \"PT15M48S\"}, {\"titleId\": \"CUSA42655_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:02:28.370000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:21:42.960000Z\", \"playDuration\": \"PT18M57S\"}, {\"titleId\": \"CUSA42654_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:33:40.110000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:02:26.770000Z\", \"playDuration\": \"PT19M33S\"}, {\"titleId\": \"CUSA42653_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:10:28.250000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:33:38.520000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA42656_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T04:50:00.290000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:10:26.670000Z\", \"playDuration\": \"PT19M59S\"}, {\"titleId\": \"CUSA43299_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:45:12.060000Z\", \"lastPlayedDateTime\": \"2023-09-05T02:30:53.330000Z\", \"playDuration\": \"PT1H51M35S\"}, {\"titleId\": \"PPSA18524_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:21:31.340000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:38:46.100000Z\", \"playDuration\": \"PT16M46S\"}, {\"titleId\": \"PPSA18522_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:05:43.450000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:21:28.090000Z\", \"playDuration\": \"PT13M51S\"}, {\"titleId\": \"PPSA18523_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:43:57.260000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:05:36.640000Z\", \"playDuration\": \"PT19M45S\"}, {\"titleId\": \"PPSA18525_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:10:10.680000Z\", \"lastPlayedDateTime\": \"2023-09-04T10:43:54.110000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA35878_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-31T01:28:02.340000Z\", \"lastPlayedDateTime\": \"2023-08-31T01:31:12.420000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA35880_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:27:49.620000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:31:16.680000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA35879_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:06:50.540000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:27:47.970000Z\", \"playDuration\": \"PT8M52S\"}, {\"titleId\": \"CUSA35882_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:10:00.880000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:18:38.520000Z\", \"playDuration\": \"PT7M11S\"}, {\"titleId\": \"CUSA43655_00\", \"name\": \"A Castle Full of Cats\", \"localizedName\": \"A Castle Full of Cats\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008505, \"titleIds\": [\"CUSA43656_00\", \"CUSA43657_00\", \"CUSA43655_00\", \"CUSA43654_00\", \"PPSA16751_00\", \"PPSA16752_00\", \"PPSA16753_00\", \"PPSA16754_00\"], \"name\": \"A Castle Full of Cats\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Castle Full of Cats\", \"uk-UA\": \"A Castle Full of Cats\", \"de-DE\": \"A Castle Full of Cats\", \"en-US\": \"A Castle Full of Cats\", \"ko-KR\": \"A Castle Full of Cats\", \"pt-BR\": \"A Castle Full of Cats\", \"es-ES\": \"A Castle Full of Cats\", \"ar-AE\": \"A Castle Full of Cats\", \"no-NO\": \"A Castle Full of Cats\", \"fr-CA\": \"A Castle Full of Cats\", \"it-IT\": \"A Castle Full of Cats\", \"pl-PL\": \"A Castle Full of Cats\", \"ru-RU\": \"A Castle Full of Cats\", \"zh-Hans\": \"A Castle Full of Cats\", \"nl-NL\": \"A Castle Full of Cats\", \"pt-PT\": \"A Castle Full of Cats\", \"zh-Hant\": \"A Castle Full of Cats\", \"sv-SE\": \"A Castle Full of Cats\", \"da-DK\": \"A Castle Full of Cats\", \"tr-TR\": \"A Castle Full of Cats\", \"fr-FR\": \"A Castle Full of Cats\", \"en-GB\": \"A Castle Full of Cats\", \"es-419\": \"A Castle Full of Cats\", \"ja-JP\": \"A Castle Full of Cats\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-29T12:04:23.090000Z\", \"lastPlayedDateTime\": \"2023-08-29T13:18:14.760000Z\", \"playDuration\": \"PT1H11M24S\"}, {\"titleId\": \"PPSA15088_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:31:57.150000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:37:59.920000Z\", \"playDuration\": \"PT5M59S\"}, {\"titleId\": \"PPSA15089_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:25:54.390000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:31:54.710000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA42087_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:20:15.450000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:25:52.050000Z\", \"playDuration\": \"PT5M32S\"}, {\"titleId\": \"CUSA42086_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:14:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:20:13.540000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"PPSA17259_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:48:13.240000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:11:28.300000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"PPSA17260_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:30:44.730000Z\", \"lastPlayedDateTime\": \"2023-08-28T10:48:10.290000Z\", \"playDuration\": \"PT16M33S\"}, {\"titleId\": \"CUSA44090_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-27T06:10:38.830000Z\", \"lastPlayedDateTime\": \"2023-08-27T06:28:14.960000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"CUSA44091_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-26T12:03:36.400000Z\", \"lastPlayedDateTime\": \"2023-08-26T12:22:40.890000Z\", \"playDuration\": \"PT18M50S\"}, {\"titleId\": \"PPSA11404_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:58:14.080000Z\", \"lastPlayedDateTime\": \"2023-08-25T13:07:38.210000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA11405_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:47:14.550000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:58:11.550000Z\", \"playDuration\": \"PT8M5S\"}, {\"titleId\": \"CUSA38142_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:39:20.260000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:46:57.570000Z\", \"playDuration\": \"PT7M12S\"}, {\"titleId\": \"CUSA38143_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:31:21.820000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:39:18.200000Z\", \"playDuration\": \"PT7M43S\"}, {\"titleId\": \"PPSA15850_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:47:25.670000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:56:18.360000Z\", \"playDuration\": \"PT8M40S\"}, {\"titleId\": \"PPSA15849_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:39:36.990000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:47:23.220000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA42797_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:29:21.880000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:39:34.340000Z\", \"playDuration\": \"PT10M7S\"}, {\"titleId\": \"CUSA42796_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:23:45.720000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:29:19.570000Z\", \"playDuration\": \"PT5M27S\"}, {\"titleId\": \"PPSA17939_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:13:05.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:22:58.540000Z\", \"playDuration\": \"PT9M42S\"}, {\"titleId\": \"PPSA17940_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:05:09.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:13:03.130000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA17938_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:55:22.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:05:06.940000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA17937_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:47:13.510000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:55:19.950000Z\", \"playDuration\": \"PT7M55S\"}, {\"titleId\": \"CUSA44667_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:35:27.810000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:47:04.990000Z\", \"playDuration\": \"PT11M20S\"}, {\"titleId\": \"CUSA44668_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:22:31.130000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:32:25.510000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"CUSA44665_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:08:02.040000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:21:54.000000Z\", \"playDuration\": \"PT12M5S\"}, {\"titleId\": \"CUSA44666_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:36:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-25T09:00:09.990000Z\", \"playDuration\": \"PT23M15S\"}, {\"titleId\": \"PPSA12608_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:34:26.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:35:40.150000Z\", \"playDuration\": \"PT59S\"}, {\"titleId\": \"PPSA12609_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:32:59.440000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:34:24.610000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA39566_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:31:01.750000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:32:56.970000Z\", \"playDuration\": \"PT1M41S\"}, {\"titleId\": \"CUSA39567_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:28:47.310000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:30:59.660000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA15845_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:22:20.830000Z\", \"playDuration\": \"PT11M1S\"}, {\"titleId\": \"PPSA15846_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:03:55.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:10:53.940000Z\", \"playDuration\": \"PT6M35S\"}, {\"titleId\": \"CUSA42793_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-24T13:32:06.290000Z\", \"lastPlayedDateTime\": \"2023-08-24T13:40:18.520000Z\", \"playDuration\": \"PT7M53S\"}, {\"titleId\": \"CUSA42792_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T12:51:09.180000Z\", \"lastPlayedDateTime\": \"2023-08-23T13:09:19.960000Z\", \"playDuration\": \"PT6M41S\"}, {\"titleId\": \"PPSA14371_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:39:30.130000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:51:00.380000Z\", \"playDuration\": \"PT11M4S\"}, {\"titleId\": \"PPSA14372_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:23:56.210000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:39:26.940000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA41333_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:13:10.850000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:23:40.820000Z\", \"playDuration\": \"PT9M4S\"}, {\"titleId\": \"CUSA41334_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:55:27.400000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:13:07.660000Z\", \"playDuration\": \"PT16M44S\"}, {\"titleId\": \"CUSA35905_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:42:52.720000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:50:13.920000Z\", \"playDuration\": \"PT6M52S\"}, {\"titleId\": \"CUSA35906_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:37:11.610000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:42:50.930000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"CUSA35904_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:34:42.690000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:37:09.650000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35903_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:26:02.800000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:33:57.870000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA15372_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T15:32:45.100000Z\", \"lastPlayedDateTime\": \"2023-08-22T16:13:43.660000Z\", \"playDuration\": \"PT40M46S\"}, {\"titleId\": \"PPSA15373_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T13:23:37.780000Z\", \"lastPlayedDateTime\": \"2023-08-22T15:32:42.370000Z\", \"playDuration\": \"PT51M24S\"}, {\"titleId\": \"CUSA42384_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T12:40:59.320000Z\", \"lastPlayedDateTime\": \"2023-08-22T13:23:35.230000Z\", \"playDuration\": \"PT42M1S\"}, {\"titleId\": \"CUSA42385_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-21T12:45:47.890000Z\", \"lastPlayedDateTime\": \"2023-08-21T14:02:59.610000Z\", \"playDuration\": \"PT1H16M21S\"}, {\"titleId\": \"PPSA08893_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T06:18:57.230000Z\", \"lastPlayedDateTime\": \"2023-08-20T07:11:39.690000Z\", \"playDuration\": \"PT46M25S\"}, {\"titleId\": \"CUSA33956_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T05:03:12.240000Z\", \"lastPlayedDateTime\": \"2023-08-20T06:18:54.140000Z\", \"playDuration\": \"PT1H12M38S\"}, {\"titleId\": \"CUSA44220_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:33:35.270000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:45:11.520000Z\", \"playDuration\": \"PT11M32S\"}, {\"titleId\": \"CUSA44219_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:22:43.700000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:33:32.880000Z\", \"playDuration\": \"PT8M24S\"}, {\"titleId\": \"CUSA44789_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:09:20.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:13:13.140000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44788_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:05:27.280000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:09:18.250000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA37318_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:47:21.840000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:02:36.990000Z\", \"playDuration\": \"PT12M53S\"}, {\"titleId\": \"PPSA14317_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:43:00.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T03:47:19.800000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"PPSA14055_00\", \"name\": \"I'm in Love With Your Dead Grandmother\", \"localizedName\": \"I'm in Love With Your Dead Grandmother\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005437, \"titleIds\": [\"PPSA13939_00\", \"PPSA17890_00\", \"CUSA34839_00\", \"CUSA34623_00\", \"CUSA34838_00\", \"PPSA14055_00\", \"PPSA14056_00\", \"CUSA35035_00\", \"CUSA34815_00\"], \"name\": \"I'm in Love With Your Dead Grandmother\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'm in Love With Your Dead Grandmother\", \"uk-UA\": \"I'm in Love With Your Dead Grandmother\", \"de-DE\": \"I'm in Love With Your Dead Grandmother\", \"en-US\": \"I'm in Love With Your Dead Grandmother\", \"ko-KR\": \"I'm in Love With Your Dead Grandmother\", \"pt-BR\": \"I'm in Love With Your Dead Grandmother\", \"es-ES\": \"I'm in Love With Your Dead Grandmother\", \"ar-AE\": \"I'm in Love With Your Dead Grandmother\", \"no-NO\": \"I'm in Love With Your Dead Grandmother\", \"fr-CA\": \"I'm in Love With Your Dead Grandmother\", \"it-IT\": \"I'm in Love With Your Dead Grandmother\", \"pl-PL\": \"I'm in Love With Your Dead Grandmother\", \"ru-RU\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hans\": \"I'm in Love With Your Dead Grandmother\", \"nl-NL\": \"I'm in Love With Your Dead Grandmother\", \"pt-PT\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hant\": \"I'm in Love With Your Dead Grandmother\", \"sv-SE\": \"I'm in Love With Your Dead Grandmother\", \"da-DK\": \"I'm in Love With Your Dead Grandmother\", \"tr-TR\": \"I'm in Love With Your Dead Grandmother\", \"fr-FR\": \"I'm in Love With Your Dead Grandmother\", \"en-GB\": \"I'm in Love With Your Dead Grandmother\", \"es-419\": \"I'm in Love With Your Dead Grandmother\", \"ja-JP\": \"I'm in Love With Your Dead Grandmother\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:16:06.920000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:38:47.520000Z\", \"playDuration\": \"PT22M37S\"}, {\"titleId\": \"PPSA15232_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:06:22.290000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:15:26.560000Z\", \"playDuration\": \"PT9M\"}, {\"titleId\": \"CUSA42237_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:22:56.750000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:05:37.690000Z\", \"playDuration\": \"PT42M23S\"}, {\"titleId\": \"PPSA18061_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:16:58.600000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:22:06.190000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA09029_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:10:00.580000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:16:56.650000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"PPSA18357_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:57:07.370000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:07:25.300000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"PPSA17960_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:18:09.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:27:02.710000Z\", \"playDuration\": \"PT8M35S\"}, {\"titleId\": \"CUSA44686_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:07:34.230000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:17:50.940000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"CUSA44387_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T04:43:12.150000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:07:32.490000Z\", \"playDuration\": \"PT21M38S\"}, {\"titleId\": \"PPSA15767_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:34:34.760000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:40:32.440000Z\", \"playDuration\": \"PT5M21S\"}, {\"titleId\": \"PPSA18162_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:28:51.650000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:34:31.140000Z\", \"playDuration\": \"PT5M20S\"}, {\"titleId\": \"PPSA18163_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:23:17.000000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:28:47.960000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA15766_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:17:19.520000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:23:13.460000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"CUSA35869_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:05:34.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:09:28.510000Z\", \"playDuration\": \"PT3M36S\"}, {\"titleId\": \"CUSA35868_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:01:09.210000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:05:33.160000Z\", \"playDuration\": \"PT3M47S\"}, {\"titleId\": \"CUSA35867_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:54:07.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:01:07.550000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"CUSA35870_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:40:08.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:54:05.380000Z\", \"playDuration\": \"PT12M23S\"}, {\"titleId\": \"CUSA40973_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:55:50.550000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:39:40.120000Z\", \"playDuration\": \"PT8H52S\"}, {\"titleId\": \"CUSA40974_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:58:43.080000Z\", \"lastPlayedDateTime\": \"2023-08-18T17:20:32.980000Z\", \"playDuration\": \"PT1H4M6S\"}, {\"titleId\": \"PPSA12593_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:45:21.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:49:37.940000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA12594_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:36:37.880000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:45:18.940000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA39550_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:32:59.950000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:36:35.420000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA39551_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:26:00.590000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:32:58.080000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"PPSA16089_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T14:20:08.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T14:57:51.110000Z\", \"playDuration\": \"PT36M57S\"}, {\"titleId\": \"PPSA16088_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-17T10:28:15.000000Z\", \"lastPlayedDateTime\": \"2023-08-17T11:00:59.050000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA15396_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-16T10:40:30.670000Z\", \"lastPlayedDateTime\": \"2023-08-16T11:45:31.110000Z\", \"playDuration\": \"PT1H4M44S\"}, {\"titleId\": \"PPSA15397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-15T13:32:57.780000Z\", \"lastPlayedDateTime\": \"2023-08-15T14:08:19.350000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA42397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-14T10:15:44.800000Z\", \"lastPlayedDateTime\": \"2023-08-14T10:51:14.840000Z\", \"playDuration\": \"PT35M13S\"}, {\"titleId\": \"CUSA42993_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-13T10:10:46.540000Z\", \"lastPlayedDateTime\": \"2023-08-13T11:03:07.160000Z\", \"playDuration\": \"PT52M15S\"}, {\"titleId\": \"CUSA42994_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-12T10:59:35.600000Z\", \"lastPlayedDateTime\": \"2023-08-12T12:22:50.090000Z\", \"playDuration\": \"PT1H15M51S\"}, {\"titleId\": \"CUSA42398_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-11T11:04:30.400000Z\", \"lastPlayedDateTime\": \"2023-08-11T11:50:21.400000Z\", \"playDuration\": \"PT44M50S\"}, {\"titleId\": \"PPSA11451_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:57:20.610000Z\", \"lastPlayedDateTime\": \"2023-08-10T13:02:34.590000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA11450_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:39:28.910000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:57:04.960000Z\", \"playDuration\": \"PT16M40S\"}, {\"titleId\": \"CUSA38234_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:23:06.780000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:39:26.640000Z\", \"playDuration\": \"PT7M2S\"}, {\"titleId\": \"CUSA38235_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:15:59.540000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:23:04.700000Z\", \"playDuration\": \"PT6M43S\"}, {\"titleId\": \"CUSA35907_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:20:05.260000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:22:37.150000Z\", \"playDuration\": \"PT2M16S\"}, {\"titleId\": \"CUSA35909_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:11:22.620000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:19:47.760000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA35910_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:08:56.590000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:11:20.490000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA35908_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:06:02.130000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:08:54.480000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA43563_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:00:51.550000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:02:44.750000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA43564_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:57:59.280000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:00:49.780000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"PPSA10282_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:09:57.540000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:42:17.790000Z\", \"playDuration\": \"PT31M25S\"}, {\"titleId\": \"PPSA10283_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T11:31:38.240000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:04:45.790000Z\", \"playDuration\": \"PT33M3S\"}, {\"titleId\": \"CUSA36879_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T10:56:42.350000Z\", \"lastPlayedDateTime\": \"2023-08-09T11:30:07.390000Z\", \"playDuration\": \"PT33M20S\"}, {\"titleId\": \"CUSA36880_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:22:42.960000Z\", \"lastPlayedDateTime\": \"2023-08-08T13:40:58.060000Z\", \"playDuration\": \"PT1H16M43S\"}, {\"titleId\": \"CUSA14532_00\", \"name\": \"Human Fall Flat\", \"localizedName\": \"Human Fall Flat\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 227139, \"titleIds\": [\"PPSA02431_00\", \"CUSA43839_00\", \"CUSA07208_00\", \"PPSA22811_00\", \"PPSA22812_00\", \"PPSA02429_00\", \"CUSA07215_00\", \"CUSA14532_00\", \"PPSA02764_00\"], \"name\": \"Human Fall Flat\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Human Fall Flat\", \"uk-UA\": \"Human Fall Flat\", \"de-DE\": \"Human Fall Flat\", \"en-US\": \"Human Fall Flat\", \"ko-KR\": \"\\ud734\\uba3c: \\ud3f4 \\ud50c\\ub7ab\", \"pt-BR\": \"Human Fall Flat\", \"es-ES\": \"Human Fall Flat\", \"ar-AE\": \"Human Fall Flat\", \"no-NO\": \"Human Fall Flat\", \"fr-CA\": \"Human Fall Flat\", \"it-IT\": \"Human Fall Flat\", \"pl-PL\": \"Human Fall Flat\", \"ru-RU\": \"Human Fall Flat\", \"zh-Hans\": \"Human Fall Flat\", \"nl-NL\": \"Human Fall Flat\", \"pt-PT\": \"Human Fall Flat\", \"zh-Hant\": \"Human Fall Flat\", \"sv-SE\": \"Human Fall Flat\", \"da-DK\": \"Human Fall Flat\", \"tr-TR\": \"Human Fall Flat\", \"fr-FR\": \"Human Fall Flat\", \"en-GB\": \"Human Fall Flat\", \"es-419\": \"Human Fall Flat\", \"ja-JP\": \"\\u30d2\\u30e5\\u30fc\\u30de\\u30f3 \\u30d5\\u30a9\\u30fc\\u30eb \\u30d5\\u30e9\\u30c3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2019-09-16T16:41:27.000000Z\", \"lastPlayedDateTime\": \"2023-08-08T12:59:11.890000Z\", \"playDuration\": \"PT56H46M6S\"}, {\"titleId\": \"CUSA33743_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:16:35.620000Z\", \"lastPlayedDateTime\": \"2023-08-08T11:19:20.420000Z\", \"playDuration\": \"PT2M39S\"}, {\"titleId\": \"CUSA33742_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-07T11:25:29.840000Z\", \"lastPlayedDateTime\": \"2023-08-07T11:28:16.980000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA44672_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:47:26.760000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:49:24.090000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA44673_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:45:06.670000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:47:06.030000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA44670_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:42:04.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:45:04.710000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"CUSA44671_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:39:13.810000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:42:01.910000Z\", \"playDuration\": \"PT2M30S\"}, {\"titleId\": \"CUSA41271_00\", \"name\": \"Bunny Parking\", \"localizedName\": \"Bunny Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10002087, \"titleIds\": [\"CUSA26063_00\", \"CUSA26064_00\", \"CUSA41271_00\", \"CUSA41270_00\"], \"name\": \"Bunny Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bunny Parking\", \"uk-UA\": \"Bunny Parking\", \"de-DE\": \"Bunny Parking\", \"en-US\": \"Bunny Parking\", \"ko-KR\": \"Bunny Parking\", \"pt-BR\": \"Bunny Parking\", \"es-ES\": \"Bunny Parking\", \"ar-AE\": \"Bunny Parking\", \"no-NO\": \"Bunny Parking\", \"fr-CA\": \"Bunny Parking\", \"it-IT\": \"Bunny Parking\", \"pl-PL\": \"Bunny Parking\", \"ru-RU\": \"Bunny Parking\", \"zh-Hans\": \"Bunny Parking\", \"nl-NL\": \"Bunny Parking\", \"pt-PT\": \"Bunny Parking\", \"zh-Hant\": \"Bunny Parking\", \"sv-SE\": \"Bunny Parking\", \"da-DK\": \"Bunny Parking\", \"tr-TR\": \"Bunny Parking\", \"fr-FR\": \"Bunny Parking\", \"en-GB\": \"Bunny Parking\", \"es-419\": \"Bunny Parking\", \"ja-JP\": \"Bunny Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T13:24:42.360000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:33:03.790000Z\", \"playDuration\": \"PT4H30M19S\"}, {\"titleId\": \"PPSA15835_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T12:06:31.110000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:28:34.780000Z\", \"playDuration\": \"PT1H20M1S\"}, {\"titleId\": \"PPSA16675_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T11:38:34.000000Z\", \"lastPlayedDateTime\": \"2023-08-06T12:06:05.070000Z\", \"playDuration\": \"PT25M17S\"}, {\"titleId\": \"CUSA43596_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T10:24:27.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T11:38:31.110000Z\", \"playDuration\": \"PT43M48S\"}, {\"titleId\": \"PPSA12590_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:53:45.260000Z\", \"lastPlayedDateTime\": \"2023-08-06T06:12:15.750000Z\", \"playDuration\": \"PT10M56S\"}, {\"titleId\": \"PPSA12589_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:49:03.000000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:53:43.010000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA39547_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:43:55.540000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:48:30.530000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39546_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:40:02.490000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:43:53.530000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"PPSA14682_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:55:29.610000Z\", \"lastPlayedDateTime\": \"2023-08-02T12:02:15.530000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14683_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:50:21.950000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:55:27.540000Z\", \"playDuration\": \"PT4M46S\"}, {\"titleId\": \"CUSA41691_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:43:25.470000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:50:19.900000Z\", \"playDuration\": \"PT4M25S\"}, {\"titleId\": \"CUSA41690_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:35:16.660000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:43:23.270000Z\", \"playDuration\": \"PT7M51S\"}, {\"titleId\": \"PPSA15834_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T07:11:49.530000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:30:35.920000Z\", \"playDuration\": \"PT1H2S\"}, {\"titleId\": \"CUSA42787_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-01T11:19:37.890000Z\", \"lastPlayedDateTime\": \"2023-08-01T14:49:39.370000Z\", \"playDuration\": \"PT1H21M11S\"}, {\"titleId\": \"CUSA42786_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T11:45:35.030000Z\", \"lastPlayedDateTime\": \"2023-07-31T14:13:34.360000Z\", \"playDuration\": \"PT2H11M27S\"}, {\"titleId\": \"CUSA36408_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T02:50:13.870000Z\", \"lastPlayedDateTime\": \"2023-07-31T06:06:21.410000Z\", \"playDuration\": \"PT2H6M27S\"}, {\"titleId\": \"CUSA37213_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T00:10:27.140000Z\", \"lastPlayedDateTime\": \"2023-07-31T02:50:10.430000Z\", \"playDuration\": \"PT2H27M20S\"}, {\"titleId\": \"CUSA36406_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-30T11:35:56.350000Z\", \"lastPlayedDateTime\": \"2023-07-30T14:54:37.180000Z\", \"playDuration\": \"PT3H13M45S\"}, {\"titleId\": \"CUSA36407_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T11:18:20.110000Z\", \"lastPlayedDateTime\": \"2023-07-29T14:19:50.230000Z\", \"playDuration\": \"PT2H57M32S\"}, {\"titleId\": \"PPSA10327_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T06:20:40.140000Z\", \"lastPlayedDateTime\": \"2023-07-29T08:26:12.730000Z\", \"playDuration\": \"PT2H5M28S\"}, {\"titleId\": \"PPSA17417_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:45:28.370000Z\", \"lastPlayedDateTime\": \"2023-07-29T06:13:12.840000Z\", \"playDuration\": \"PT24M59S\"}, {\"titleId\": \"PPSA17416_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:17:18.550000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:45:25.690000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"CUSA44226_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:44:47.940000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:16:39.230000Z\", \"playDuration\": \"PT26M49S\"}, {\"titleId\": \"CUSA44225_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:03:20.540000Z\", \"lastPlayedDateTime\": \"2023-07-29T04:44:45.540000Z\", \"playDuration\": \"PT34M27S\"}, {\"titleId\": \"PPSA13337_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:42:34.800000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:48:29.640000Z\", \"playDuration\": \"PT5M30S\"}, {\"titleId\": \"CUSA44641_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:40:16.880000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:42:23.990000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA44642_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:35:19.290000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:40:15.010000Z\", \"playDuration\": \"PT4M17S\"}, {\"titleId\": \"CUSA44647_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:32:59.350000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:35:05.970000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA44648_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:29:48.530000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:32:57.480000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44645_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:06:54.330000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:29:37.630000Z\", \"playDuration\": \"PT22M35S\"}, {\"titleId\": \"CUSA44646_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:03:38.620000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:06:52.430000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"CUSA44643_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:00:51.100000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:03:07.590000Z\", \"playDuration\": \"PT2M10S\"}, {\"titleId\": \"CUSA44644_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:57:42.610000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:00:48.890000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44651_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:53:10.320000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:55:08.280000Z\", \"playDuration\": \"PT1M4S\"}, {\"titleId\": \"CUSA44650_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:50:26.310000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:53:07.920000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA44649_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:47:29.860000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:50:24.220000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA44652_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:43:42.390000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:47:27.710000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA36906_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T07:12:22.210000Z\", \"lastPlayedDateTime\": \"2023-07-28T15:19:44.130000Z\", \"playDuration\": \"PT1H43M32S\"}, {\"titleId\": \"PPSA17877_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:43:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T14:08:41.130000Z\", \"playDuration\": \"PT20M42S\"}, {\"titleId\": \"PPSA17876_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:14:58.560000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:43:00.810000Z\", \"playDuration\": \"PT21M57S\"}, {\"titleId\": \"PPSA17875_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:48:09.920000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:14:55.290000Z\", \"playDuration\": \"PT25M3S\"}, {\"titleId\": \"PPSA17878_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:20:00.820000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:45:33.140000Z\", \"playDuration\": \"PT23M55S\"}, {\"titleId\": \"PPSA17482_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:10:22.340000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:16:27.140000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"PPSA17481_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:59:14.380000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:10:19.320000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17480_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:49:38.140000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:58:53.660000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"PPSA17483_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:37:52.470000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:49:35.200000Z\", \"playDuration\": \"PT10M14S\"}, {\"titleId\": \"PPSA12604_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:15:19.390000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:20:07.690000Z\", \"playDuration\": \"PT4M44S\"}, {\"titleId\": \"PPSA12603_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:08:43.000000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:15:17.330000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA39561_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:02:29.800000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:08:41.890000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"CUSA39560_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:54:33.960000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:02:27.820000Z\", \"playDuration\": \"PT5M25S\"}, {\"titleId\": \"PPSA17413_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:36:12.510000Z\", \"lastPlayedDateTime\": \"2023-07-28T10:52:47.830000Z\", \"playDuration\": \"PT16M27S\"}, {\"titleId\": \"PPSA16327_00\", \"name\": \"Frightence\", \"localizedName\": \"Frightence\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004239, \"titleIds\": [\"CUSA31599_00\", \"CUSA31600_00\", \"PPSA16326_00\", \"PPSA16327_00\"], \"name\": \"Frightence\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Frightence\", \"uk-UA\": \"Frightence\", \"de-DE\": \"Frightence\", \"en-US\": \"Frightence\", \"ko-KR\": \"Frightence\", \"pt-BR\": \"Frightence\", \"es-ES\": \"Frightence\", \"ar-AE\": \"Frightence\", \"no-NO\": \"Frightence\", \"fr-CA\": \"Frightence\", \"it-IT\": \"Frightence\", \"pl-PL\": \"Frightence\", \"ru-RU\": \"Frightence\", \"zh-Hans\": \"Frightence\", \"nl-NL\": \"Frightence\", \"pt-PT\": \"Frightence\", \"zh-Hant\": \"Frightence\", \"sv-SE\": \"Frightence\", \"da-DK\": \"Frightence\", \"tr-TR\": \"Frightence\", \"fr-FR\": \"Frightence\", \"en-GB\": \"Frightence\", \"es-419\": \"Frightence\", \"ja-JP\": \"Frightence\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:51:47.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T09:09:30.480000Z\", \"playDuration\": \"PT17M28S\"}, {\"titleId\": \"PPSA17412_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:22:15.300000Z\", \"lastPlayedDateTime\": \"2023-07-28T08:33:27.790000Z\", \"playDuration\": \"PT10M21S\"}, {\"titleId\": \"PPSA10328_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T04:31:46.780000Z\", \"lastPlayedDateTime\": \"2023-07-28T07:10:55.560000Z\", \"playDuration\": \"PT1H20M55S\"}, {\"titleId\": \"PPSA10330_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T01:38:09.830000Z\", \"lastPlayedDateTime\": \"2023-07-28T04:25:11.820000Z\", \"playDuration\": \"PT2H18M57S\"}, {\"titleId\": \"CUSA36905_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T14:01:02.960000Z\", \"lastPlayedDateTime\": \"2023-07-27T15:29:50.520000Z\", \"playDuration\": \"PT1H27M55S\"}, {\"titleId\": \"CUSA36908_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T11:53:45.500000Z\", \"lastPlayedDateTime\": \"2023-07-27T14:01:00.500000Z\", \"playDuration\": \"PT2H5M34S\"}, {\"titleId\": \"CUSA27581_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-26T12:53:11.970000Z\", \"lastPlayedDateTime\": \"2023-07-27T11:28:26.190000Z\", \"playDuration\": \"PT5H41M48S\"}], \"nextOffset\": 400, \"previousOffset\": 199, \"totalItemCount\": 13573}"
}
}
},
@@ -275,56 +272,55 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
- ],
- "Connection": [
- "keep-alive",
- "Transfer-Encoding"
- ],
- "X-Psn-Request-Id": [
- "2b83ea99-83ee-1031-92fc-f24ee2ea6697"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "X-Psn-Correlation-Id": [
- "2b83ea99-83ee-1031-92fb-f24ee2ea6697"
- ],
"Cache-Control": [
"max-age=0, no-cache, no-store"
],
- "Transfer-Encoding": [
- "chunked"
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:12 GMT"
],
"Strict-Transport-Security": [
"max-age=63072000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Access-Control-Allow-Methods": [
"OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:02 GMT"
+ "Connection": [
+ "keep-alive"
],
- "Content-Type": [
- "application/json"
+ "X-Psn-Request-Id": [
+ "adb8aa1b-94cf-1031-8034-b47f2a52ee0c"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:02 GMT"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Psn-Correlation-Id": [
+ "adb8aa1b-94cf-1031-8033-b47f2a52ee0c"
+ ],
+ "Content-Length": [
+ "1100937"
],
"Access-Control-Max-Age": [
"3600"
],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:12 GMT"
+ ],
+ "Access-Control-Allow-Origin": [
+ "*"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"PPSA16270_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:46:23.470000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:48:26.230000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"PPSA14213_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:44:42.160000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:46:20.590000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"PPSA14214_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:42:17.520000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:44:39.340000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA16271_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:40:27.980000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:42:14.670000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA43231_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:38:22.570000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:40:02.690000Z\", \"playDuration\": \"PT1M29S\"}, {\"titleId\": \"CUSA41166_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:36:36.890000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:38:19.150000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA41167_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:34:54.690000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:36:33.810000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA43232_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:32:59.530000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:34:52.210000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"PPSA15401_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T05:14:21.370000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:22:38.880000Z\", \"playDuration\": \"PT1H8M14S\"}, {\"titleId\": \"PPSA15400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T04:10:18.920000Z\", \"lastPlayedDateTime\": \"2023-07-25T05:14:19.410000Z\", \"playDuration\": \"PT1H3M37S\"}, {\"titleId\": \"CUSA42399_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T01:18:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-25T02:49:53.900000Z\", \"playDuration\": \"PT1H12M16S\"}, {\"titleId\": \"CUSA42400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-24T13:30:18.860000Z\", \"lastPlayedDateTime\": \"2023-07-24T15:35:37.070000Z\", \"playDuration\": \"PT1H38M52S\"}, {\"titleId\": \"PPSA16727_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T14:08:25.840000Z\", \"lastPlayedDateTime\": \"2023-07-23T15:01:02.200000Z\", \"playDuration\": \"PT52M10S\"}, {\"titleId\": \"CUSA43626_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T12:53:01.020000Z\", \"lastPlayedDateTime\": \"2023-07-23T14:07:14.080000Z\", \"playDuration\": \"PT1H11M29S\"}, {\"titleId\": \"PPSA06922_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T10:40:20.330000Z\", \"lastPlayedDateTime\": \"2023-07-23T12:07:45.630000Z\", \"playDuration\": \"PT1H26M50S\"}, {\"titleId\": \"CUSA32774_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T05:42:44.530000Z\", \"lastPlayedDateTime\": \"2023-07-23T08:59:47.640000Z\", \"playDuration\": \"PT3H14M49S\"}, {\"titleId\": \"PPSA16622_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T03:49:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-23T05:12:25.360000Z\", \"playDuration\": \"PT1H22M38S\"}, {\"titleId\": \"CUSA43535_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T01:43:04.640000Z\", \"lastPlayedDateTime\": \"2023-07-23T03:49:40.890000Z\", \"playDuration\": \"PT2H3M13S\"}, {\"titleId\": \"PPSA15722_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T14:53:27.180000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:54:07.250000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42776_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T13:02:49.610000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:46:46.880000Z\", \"playDuration\": \"PT57M23S\"}, {\"titleId\": \"PPSA05394_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T12:00:52.620000Z\", \"lastPlayedDateTime\": \"2023-07-22T13:02:46.290000Z\", \"playDuration\": \"PT1H1M43S\"}, {\"titleId\": \"PPSA05395_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T10:33:07.480000Z\", \"lastPlayedDateTime\": \"2023-07-22T12:00:49.190000Z\", \"playDuration\": \"PT58M2S\"}, {\"titleId\": \"CUSA27163_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T01:43:01.390000Z\", \"lastPlayedDateTime\": \"2023-07-22T03:01:33.390000Z\", \"playDuration\": \"PT1H18M14S\"}, {\"titleId\": \"CUSA27164_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T22:02:59.250000Z\", \"lastPlayedDateTime\": \"2023-07-22T01:42:57.400000Z\", \"playDuration\": \"PT1H15M25S\"}, {\"titleId\": \"CUSA43643_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:27:50.470000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:29:19.150000Z\", \"playDuration\": \"PT1M25S\"}, {\"titleId\": \"CUSA43642_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:22:44.130000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:25:10.090000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA17157_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:19:08.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:22:40.760000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA17158_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:14:11.550000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:19:05.000000Z\", \"playDuration\": \"PT3M54S\"}, {\"titleId\": \"PPSA17155_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:11:12.690000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:14:08.180000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA17156_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:08:12.650000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:11:09.100000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA43992_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:57:13.500000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:01:00.440000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"CUSA43990_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:49:00.270000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:57:10.270000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43991_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:45:53.560000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:48:57.100000Z\", \"playDuration\": \"PT2M58S\"}, {\"titleId\": \"CUSA43993_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:40:04.060000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:45:50.420000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA44224_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:35:10.370000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:37:43.360000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA44223_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:32:09.640000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:35:07.770000Z\", \"playDuration\": \"PT2M49S\"}, {\"titleId\": \"PPSA12585_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:23:05.000000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:26:55.180000Z\", \"playDuration\": \"PT3M33S\"}, {\"titleId\": \"PPSA12586_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:18:58.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:23:03.310000Z\", \"playDuration\": \"PT3M57S\"}, {\"titleId\": \"CUSA39542_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:14:54.110000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:18:56.170000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA39543_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:10:16.670000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:14:52.050000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA42695_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T00:50:53.290000Z\", \"lastPlayedDateTime\": \"2023-07-21T08:01:10.000000Z\", \"playDuration\": \"PT5H52M1S\"}, {\"titleId\": \"CUSA42694_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:54:22.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T15:34:30.760000Z\", \"playDuration\": \"PT8H56M29S\"}, {\"titleId\": \"PPSA15897_00\", \"name\": \"The Complex\", \"localizedName\": \"The Complex\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10000347, \"titleIds\": [\"CUSA32389_00\", \"CUSA32390_00\", \"PPSA15898_00\", \"PPSA15897_00\", \"CUSA18654_00\", \"CUSA18645_00\"], \"name\": \"The Complex\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Complex\", \"uk-UA\": \"The Complex\", \"de-DE\": \"The Complex\", \"en-US\": \"The Complex\", \"ko-KR\": \"The Complex\", \"pt-BR\": \"The Complex\", \"es-ES\": \"The Complex\", \"ar-AE\": \"The Complex\", \"no-NO\": \"The Complex\", \"fr-CA\": \"The Complex\", \"it-IT\": \"The Complex\", \"pl-PL\": \"The Complex\", \"ru-RU\": \"The Complex\", \"zh-Hans\": \"The Complex \\u590d\\u4f53\", \"nl-NL\": \"The Complex\", \"pt-PT\": \"The Complex\", \"zh-Hant\": \"The Complex \\u590d\\u4f53\", \"sv-SE\": \"The Complex\", \"da-DK\": \"The Complex\", \"tr-TR\": \"The Complex\", \"fr-FR\": \"The Complex\", \"en-GB\": \"The Complex\", \"es-419\": \"The Complex\", \"ja-JP\": \"The Complex\\u30af\\u30ed\\u30e6\\u30ea\\u56e3\\u5730\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-19T05:16:18.540000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:34:32.830000Z\", \"playDuration\": \"PT4H29M32S\"}, {\"titleId\": \"PPSA13287_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:16:32.860000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:29:01.550000Z\", \"playDuration\": \"PT11M31S\"}, {\"titleId\": \"PPSA17415_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:12:55.890000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:15:48.680000Z\", \"playDuration\": \"PT2M33S\"}, {\"titleId\": \"PPSA17414_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:09:43.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:12:52.770000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17365_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:05:16.340000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:09:16.960000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"PPSA17364_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:55:17.510000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:05:13.540000Z\", \"playDuration\": \"PT9M44S\"}, {\"titleId\": \"CUSA44178_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:48:34.170000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:54:46.280000Z\", \"playDuration\": \"PT6M8S\"}, {\"titleId\": \"CUSA44179_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:34:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:48:31.680000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"CUSA44222_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:19:54.130000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:33:48.030000Z\", \"playDuration\": \"PT13M13S\"}, {\"titleId\": \"CUSA44221_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:01:10.420000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:19:51.040000Z\", \"playDuration\": \"PT18M6S\"}, {\"titleId\": \"CUSA28035_00\", \"name\": \"OMNO\", \"localizedName\": \"OMNO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 10002920, \"titleIds\": [\"CUSA28681_00\", \"CUSA28035_00\"], \"name\": \"OMNO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"OMNO\", \"uk-UA\": \"OMNO\", \"de-DE\": \"OMNO\", \"en-US\": \"OMNO\", \"ko-KR\": \"OMNO\", \"pt-BR\": \"OMNO\", \"es-ES\": \"OMNO\", \"ar-AE\": \"OMNO\", \"no-NO\": \"OMNO\", \"fr-CA\": \"OMNO\", \"it-IT\": \"OMNO\", \"pl-PL\": \"OMNO\", \"ru-RU\": \"OMNO\", \"zh-Hans\": \"OMNO\", \"nl-NL\": \"OMNO\", \"pt-PT\": \"OMNO\", \"zh-Hant\": \"OMNO\", \"sv-SE\": \"OMNO\", \"da-DK\": \"OMNO\", \"tr-TR\": \"OMNO\", \"fr-FR\": \"OMNO\", \"en-GB\": \"OMNO\", \"es-419\": \"OMNO\", \"ja-JP\": \"OMNO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T10:42:00.110000Z\", \"lastPlayedDateTime\": \"2023-07-19T03:02:22.710000Z\", \"playDuration\": \"PT5H44M33S\"}, {\"titleId\": \"PPSA15226_00\", \"name\": \"NARAKA: BLADEPOINT\", \"localizedName\": \"NARAKA: BLADEPOINT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004405, \"titleIds\": [\"CUSA42174_00\", \"CUSA42663_00\", \"PPSA16591_00\", \"CUSA42749_00\", \"PPSA15226_00\", \"CUSA42669_00\", \"PPSA15239_00\", \"CUSA43513_00\", \"CUSA42670_00\", \"CUSA42176_00\"], \"name\": \"NARAKA: BLADEPOINT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/83444d6cb496b978519a0e89400fe129b888b82bd4c8e24a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2807/b09f37cd838c9ca3d6c5a4e83e6977a362e5ae42695851b5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/8079af5b40ce510a7a530a6993c2282766c7ebada9d5d58f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NARAKA: BLADEPOINT\", \"uk-UA\": \"NARAKA: BLADEPOINT\", \"de-DE\": \"NARAKA: BLADEPOINT\", \"en-US\": \"NARAKA: BLADEPOINT\", \"ko-KR\": \"\\ub098\\ub77c\\uce74:\\ube14\\ub808\\uc774\\ub4dc\\ud3ec\\uc778\\ud2b8\", \"pt-BR\": \"NARAKA: BLADEPOINT\", \"es-ES\": \"NARAKA: BLADEPOINT\", \"ar-AE\": \"NARAKA: BLADEPOINT\", \"no-NO\": \"NARAKA: BLADEPOINT\", \"fr-CA\": \"NARAKA: BLADEPOINT\", \"it-IT\": \"NARAKA: BLADEPOINT\", \"pl-PL\": \"NARAKA: BLADEPOINT\", \"ru-RU\": \"NARAKA: BLADEPOINT\", \"zh-Hans\": \"\\u6c38\\u52ab\\u65e0\\u95f4\", \"nl-NL\": \"NARAKA: BLADEPOINT\", \"pt-PT\": \"NARAKA: BLADEPOINT\", \"zh-Hant\": \"\\u6c38\\u52ab\\u7121\\u9593\", \"sv-SE\": \"NARAKA: BLADEPOINT\", \"da-DK\": \"NARAKA: BLADEPOINT\", \"tr-TR\": \"NARAKA: BLADEPOINT\", \"fr-FR\": \"NARAKA: BLADEPOINT\", \"en-GB\": \"NARAKA: BLADEPOINT\", \"es-419\": \"NARAKA: BLADEPOINT\", \"ja-JP\": \"NARAKA: BLADEPOINT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/83444d6cb496b978519a0e89400fe129b888b82bd4c8e24a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2807/b09f37cd838c9ca3d6c5a4e83e6977a362e5ae42695851b5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/8079af5b40ce510a7a530a6993c2282766c7ebada9d5d58f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T08:30:42.550000Z\", \"lastPlayedDateTime\": \"2023-07-18T09:15:41.870000Z\", \"playDuration\": \"PT44M49S\"}, {\"titleId\": \"CUSA26140_00\", \"name\": \"I Am Dead\", \"localizedName\": \"I Am Dead\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002127, \"titleIds\": [\"CUSA26137_00\", \"CUSA26138_00\", \"PPSA02616_00\", \"CUSA26139_00\", \"CUSA26140_00\", \"PPSA02618_00\", \"PPSA02617_00\", \"PPSA02619_00\"], \"name\": \"I Am Dead\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I Am Dead\", \"uk-UA\": \"I Am Dead\", \"de-DE\": \"I Am Dead\", \"en-US\": \"I Am Dead\", \"ko-KR\": \"I Am Dead\", \"pt-BR\": \"I Am Dead\", \"es-ES\": \"I Am Dead\", \"ar-AE\": \"I Am Dead\", \"no-NO\": \"I Am Dead\", \"fr-CA\": \"I Am Dead\", \"it-IT\": \"I Am Dead\", \"pl-PL\": \"I Am Dead\", \"ru-RU\": \"I Am Dead\", \"zh-Hans\": \"I Am Dead\", \"nl-NL\": \"I Am Dead\", \"pt-PT\": \"I Am Dead\", \"zh-Hant\": \"I Am Dead\", \"sv-SE\": \"I Am Dead\", \"da-DK\": \"I Am Dead\", \"tr-TR\": \"I Am Dead\", \"fr-FR\": \"I Am Dead\", \"en-GB\": \"I Am Dead\", \"es-419\": \"I Am Dead\", \"ja-JP\": \"I Am Dead\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T07:53:58.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T08:29:30.440000Z\", \"playDuration\": \"PT34M34S\"}, {\"titleId\": \"PPSA14487_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:56:32.350000Z\", \"lastPlayedDateTime\": \"2023-07-18T07:01:32.080000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA14488_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:48:43.730000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:56:30.200000Z\", \"playDuration\": \"PT7M33S\"}, {\"titleId\": \"CUSA41462_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:18:21.190000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:48:41.550000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA41463_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:06:05.150000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:18:19.210000Z\", \"playDuration\": \"PT11M27S\"}, {\"titleId\": \"PPSA09448_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-16T04:59:59.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:48:46.330000Z\", \"playDuration\": \"PT15H37M30S\"}, {\"titleId\": \"CUSA35737_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T07:01:59.500000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:00:54.750000Z\", \"playDuration\": \"PT19H24M33S\"}, {\"titleId\": \"CUSA23986_00\", \"name\": \"Carto\", \"localizedName\": \"Carto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 10000947, \"titleIds\": [\"CUSA23986_00\", \"CUSA23985_00\"], \"name\": \"Carto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Carto\", \"uk-UA\": \"Carto\", \"de-DE\": \"Carto\", \"en-US\": \"Carto\", \"ko-KR\": \"Carto\", \"pt-BR\": \"Carto\", \"es-ES\": \"Carto\", \"ar-AE\": \"Carto\", \"no-NO\": \"Carto\", \"fr-CA\": \"Carto\", \"it-IT\": \"Carto\", \"pl-PL\": \"Carto\", \"ru-RU\": \"Carto\", \"zh-Hans\": \"Carto\", \"nl-NL\": \"Carto\", \"pt-PT\": \"Carto\", \"zh-Hant\": \"Carto\", \"sv-SE\": \"Carto\", \"da-DK\": \"Carto\", \"tr-TR\": \"Carto\", \"fr-FR\": \"Carto\", \"en-GB\": \"Carto\", \"es-419\": \"Carto\", \"ja-JP\": \"Carto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:01:08.960000Z\", \"lastPlayedDateTime\": \"2023-07-18T03:27:01.460000Z\", \"playDuration\": \"PT11H9M45S\"}, {\"titleId\": \"PPSA17660_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T05:18:28.380000Z\", \"lastPlayedDateTime\": \"2023-07-15T06:08:13.430000Z\", \"playDuration\": \"PT49M41S\"}, {\"titleId\": \"PPSA17661_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T04:22:02.110000Z\", \"lastPlayedDateTime\": \"2023-07-15T05:18:25.230000Z\", \"playDuration\": \"PT48M36S\"}, {\"titleId\": \"PPSA17658_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T03:33:42.030000Z\", \"lastPlayedDateTime\": \"2023-07-15T04:21:58.970000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"PPSA17659_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T01:55:58.440000Z\", \"lastPlayedDateTime\": \"2023-07-15T03:33:38.800000Z\", \"playDuration\": \"PT1H4M23S\"}, {\"titleId\": \"PPSA16546_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T14:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-07-14T15:21:36.320000Z\", \"playDuration\": \"PT54M3S\"}, {\"titleId\": \"PPSA16545_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:51:17.000000Z\", \"lastPlayedDateTime\": \"2023-07-14T14:01:43.310000Z\", \"playDuration\": \"PT1H34M23S\"}, {\"titleId\": \"PPSA04158_00\", \"name\": \"Goat Simulator 3\", \"localizedName\": \"Goat Simulator 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 25, \"concept\": {\"id\": 10003123, \"titleIds\": [\"PPSA04158_00\", \"PPSA04159_00\", \"CUSA46679_00\", \"CUSA46680_00\"], \"name\": \"Goat Simulator 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/RsnBtkGKT7iJJH5zI9E207Km.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/V7DjT6HPkxJRSBXvUZbCwO6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Goat Simulator 3\", \"uk-UA\": \"Goat Simulator 3\", \"de-DE\": \"Goat Simulator 3\", \"en-US\": \"Goat Simulator 3\", \"ko-KR\": \"Goat Simulator 3\", \"pt-BR\": \"Goat Simulator 3\", \"es-ES\": \"Project Zero\", \"ar-AE\": \"Goat Simulator 3\", \"no-NO\": \"Goat Simulator 3\", \"fr-CA\": \"Goat Simulator 3\", \"it-IT\": \"Goat Simulator 3\", \"pl-PL\": \"Goat Simulator 3\", \"ru-RU\": \"Goat Simulator 3\", \"zh-Hans\": \"Goat Simulator 3\", \"nl-NL\": \"Goat Simulator 3\", \"pt-PT\": \"Goat Simulator 3\", \"zh-Hant\": \"Goat Simulator 3\", \"sv-SE\": \"Goat Simulator 3\", \"da-DK\": \"Goat Simulator 3\", \"tr-TR\": \"Goat Simulator 3\", \"fr-FR\": \"Goat Simulator 3\", \"en-GB\": \"Goat Simulator 3\", \"es-419\": \"Goat Simulator 3\", \"ja-JP\": \"Goat Simulator 3\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/RsnBtkGKT7iJJH5zI9E207Km.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/V7DjT6HPkxJRSBXvUZbCwO6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-01-27T13:21:22.170000Z\", \"lastPlayedDateTime\": \"2023-07-14T13:47:37.830000Z\", \"playDuration\": \"PT17H52M24S\"}, {\"titleId\": \"CUSA43909_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:44:40.800000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:47:23.430000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA43906_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:37:29.140000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:44:39.150000Z\", \"playDuration\": \"PT3M6S\"}, {\"titleId\": \"CUSA43907_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:35:36.470000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:37:27.250000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA43908_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T09:04:41.410000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:35:34.690000Z\", \"playDuration\": \"PT1H30M41S\"}, {\"titleId\": \"PPSA17078_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:25:45.490000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:39:13.030000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"PPSA17077_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:12:07.820000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:25:42.600000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43930_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:58:07.300000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:12:03.990000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43931_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:41:53.990000Z\", \"lastPlayedDateTime\": \"2023-07-14T07:58:03.430000Z\", \"playDuration\": \"PT16M\"}, {\"titleId\": \"PPSA11431_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:57:20.090000Z\", \"lastPlayedDateTime\": \"2023-07-13T07:01:30.430000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"PPSA11430_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:52:50.910000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:57:18.250000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA38212_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:46:28.980000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:50:28.990000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA09073_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T00:48:56.560000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:43:06.790000Z\", \"playDuration\": \"PT4H16M18S\"}, {\"titleId\": \"CUSA35347_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:21:09.030000Z\", \"lastPlayedDateTime\": \"2023-07-13T00:48:53.390000Z\", \"playDuration\": \"PT7H59M9S\"}, {\"titleId\": \"PPSA15554_00\", \"name\": \"Dead Cells\", \"localizedName\": \"Dead Cells\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 231053, \"titleIds\": [\"CUSA10485_00\", \"CUSA11253_00\", \"CUSA10484_00\", \"CUSA18439_00\", \"CUSA24085_00\", \"CUSA24086_00\", \"CUSA42849_00\", \"PPSA15554_00\", \"PPSA15552_00\", \"CUSA42830_00\"], \"name\": \"Dead Cells\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Cells\", \"uk-UA\": \"Dead Cells\", \"de-DE\": \"Dead Cells\", \"en-US\": \"Dead Cells\", \"ko-KR\": \"\\ub370\\ub4dc \\uc140 (Dead Cells)\", \"pt-BR\": \"Dead Cells\", \"es-ES\": \"Dead Cells\", \"ar-AE\": \"Dead Cells\", \"no-NO\": \"Dead Cells\", \"fr-CA\": \"Dead Cells\", \"it-IT\": \"Dead Cells\", \"pl-PL\": \"Dead Cells\", \"ru-RU\": \"Dead Cells\", \"zh-Hans\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"nl-NL\": \"Dead Cells\", \"pt-PT\": \"Dead Cells\", \"zh-Hant\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"sv-SE\": \"Dead Cells\", \"da-DK\": \"Dead Cells\", \"tr-TR\": \"Dead Cells\", \"fr-FR\": \"Dead Cells\", \"en-GB\": \"Dead Cells\", \"es-419\": \"Dead Cells\", \"ja-JP\": \"Dead Cells\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:55:08.860000Z\", \"lastPlayedDateTime\": \"2023-07-10T04:43:29.700000Z\", \"playDuration\": \"PT6M53S\"}, {\"titleId\": \"CUSA16005_00\", \"name\": \"Lonely Mountains: Downhill\", \"localizedName\": \"Lonely Mountains: Downhill\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234290, \"titleIds\": [\"CUSA16005_00\", \"CUSA23928_00\", \"CUSA15961_00\"], \"name\": \"Lonely Mountains: Downhill\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lonely Mountains: Downhill\", \"uk-UA\": \"Lonely Mountains: Downhill\", \"de-DE\": \"Lonely Mountains: Downhill\", \"en-US\": \"Lonely Mountains: Downhill\", \"ko-KR\": \"Lonely Mountains: Downhill\", \"pt-BR\": \"Lonely Mountains: Downhill\", \"es-ES\": \"Lonely Mountains: Downhill\", \"ar-AE\": \"Lonely Mountains: Downhill\", \"no-NO\": \"Lonely Mountains: Downhill\", \"fr-CA\": \"Lonely Mountains: Downhill\", \"it-IT\": \"Lonely Mountains: Downhill\", \"pl-PL\": \"Lonely Mountains: Downhill\", \"ru-RU\": \"Lonely Mountains: Downhill\", \"zh-Hans\": \"Lonely Mountains: Downhill\", \"nl-NL\": \"Lonely Mountains: Downhill\", \"pt-PT\": \"Lonely Mountains: Downhill\", \"zh-Hant\": \"Lonely Mountains: Downhill\", \"sv-SE\": \"Lonely Mountains: Downhill\", \"da-DK\": \"Lonely Mountains: Downhill\", \"tr-TR\": \"Lonely Mountains: Downhill\", \"fr-FR\": \"Lonely Mountains: Downhill\", \"en-GB\": \"Lonely Mountains: Downhill\", \"es-419\": \"Lonely Mountains: Downhill\", \"ja-JP\": \"Lonely Mountains: Downhill\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:46:11.770000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:54:20.920000Z\", \"playDuration\": \"PT8M4S\"}, {\"titleId\": \"PPSA05850_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:17:02.160000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:44:16.170000Z\", \"playDuration\": \"PT14M5S\"}, {\"titleId\": \"CUSA31412_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:13:16.260000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:39:29.750000Z\", \"playDuration\": \"PT15M35S\"}, {\"titleId\": \"PPSA06577_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:10:03.960000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:11:40.700000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA32294_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:07:49.710000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:09:59.230000Z\", \"playDuration\": \"PT2M2S\"}, {\"titleId\": \"CUSA44349_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:02:52.670000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:04:59.570000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA44350_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:57:38.830000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:02:50.280000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"PPSA07023_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:48:46.760000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:56:22.110000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA32884_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:39:34.480000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:48:16.350000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"CUSA18152_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-26T15:20:43.840000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:07:36.840000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA18449_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-05-15T12:08:21.880000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:57:20.800000Z\", \"playDuration\": \"PT22M43S\"}, {\"titleId\": \"PPSA15832_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T13:14:28.190000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:02:26.900000Z\", \"playDuration\": \"PT39M40S\"}, {\"titleId\": \"PPSA15833_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T12:33:54.730000Z\", \"lastPlayedDateTime\": \"2023-07-09T13:13:56.120000Z\", \"playDuration\": \"PT39M36S\"}, {\"titleId\": \"CUSA42784_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T11:45:00.800000Z\", \"lastPlayedDateTime\": \"2023-07-09T12:33:39.050000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"CUSA42785_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T08:56:48.460000Z\", \"lastPlayedDateTime\": \"2023-07-09T11:44:58.610000Z\", \"playDuration\": \"PT1H27S\"}, {\"titleId\": \"PPSA16522_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T07:45:23.650000Z\", \"lastPlayedDateTime\": \"2023-07-09T08:37:21.820000Z\", \"playDuration\": \"PT47M7S\"}, {\"titleId\": \"PPSA16523_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T05:02:50.300000Z\", \"lastPlayedDateTime\": \"2023-07-09T07:45:21.860000Z\", \"playDuration\": \"PT1H1M5S\"}, {\"titleId\": \"CUSA43442_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T02:42:12.080000Z\", \"lastPlayedDateTime\": \"2023-07-09T04:31:10.520000Z\", \"playDuration\": \"PT47M37S\"}, {\"titleId\": \"CUSA43441_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:39:52.610000Z\", \"lastPlayedDateTime\": \"2023-07-09T02:36:09.680000Z\", \"playDuration\": \"PT1H55M7S\"}, {\"titleId\": \"PPSA05326_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:15:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:18:24.340000Z\", \"playDuration\": \"PT42S\"}, {\"titleId\": \"CUSA30449_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 4, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:58:22.150000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:17:11.490000Z\", \"playDuration\": \"PT5H55M\"}, {\"titleId\": \"PPSA17389_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:37:55.500000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:46:35.570000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17391_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:30:19.440000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:37:52.550000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA17392_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:23:40.570000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:30:16.690000Z\", \"playDuration\": \"PT6M2S\"}, {\"titleId\": \"PPSA17390_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:23:37.720000Z\", \"playDuration\": \"PT9M8S\"}, {\"titleId\": \"CUSA43838_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:27:24.050000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:30:25.160000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA44124_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:23:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:27:20.640000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA16728_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T07:30:56.460000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:23:01.930000Z\", \"playDuration\": \"PT48M40S\"}, {\"titleId\": \"CUSA43627_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T04:03:21.900000Z\", \"lastPlayedDateTime\": \"2023-07-07T07:30:54.120000Z\", \"playDuration\": \"PT3H14M22S\"}, {\"titleId\": \"PPSA16140_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T03:57:34.810000Z\", \"lastPlayedDateTime\": \"2023-07-07T04:01:33.730000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA43034_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:34:14.580000Z\", \"lastPlayedDateTime\": \"2023-07-07T03:57:33.060000Z\", \"playDuration\": \"PT47M6S\"}, {\"titleId\": \"PPSA17076_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:17:54.510000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:32:19.620000Z\", \"playDuration\": \"PT14M22S\"}, {\"titleId\": \"PPSA17075_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:03:38.720000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:17:51.750000Z\", \"playDuration\": \"PT13M52S\"}, {\"titleId\": \"CUSA43928_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:48:06.310000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:03:34.860000Z\", \"playDuration\": \"PT13M12S\"}, {\"titleId\": \"CUSA43929_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:02:34.070000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:48:02.420000Z\", \"playDuration\": \"PT13M43S\"}, {\"titleId\": \"PPSA11359_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:58:54.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:02:10.250000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11360_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:58:52.970000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"CUSA38099_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:53:17.680000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:56:32.960000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA38100_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:49:24.480000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:53:05.710000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA42524_00\", \"name\": \"Russian Subway Dogs\", \"localizedName\": \"Russian Subway Dogs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231153, \"titleIds\": [\"CUSA11099_00\", \"CUSA42524_00\"], \"name\": \"Russian Subway Dogs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Russian Subway Dogs\", \"uk-UA\": \"Russian Subway Dogs\", \"de-DE\": \"Russian Subway Dogs\", \"en-US\": \"Russian Subway Dogs\", \"pt-BR\": \"Russian Subway Dogs\", \"es-ES\": \"Russian Subway Dogs\", \"ar-AE\": \"Russian Subway Dogs\", \"no-NO\": \"Russian Subway Dogs\", \"fr-CA\": \"Russian Subway Dogs\", \"it-IT\": \"Russian Subway Dogs\", \"pl-PL\": \"Russian Subway Dogs\", \"ru-RU\": \"Russian Subway Dogs\", \"zh-Hans\": \"Russian Subway Dogs\", \"nl-NL\": \"Russian Subway Dogs\", \"pt-PT\": \"Russian Subway Dogs\", \"zh-Hant\": \"Russian Subway Dogs\", \"sv-SE\": \"Russian Subway Dogs\", \"da-DK\": \"Russian Subway Dogs\", \"tr-TR\": \"Russian Subway Dogs\", \"fr-FR\": \"Russian Subway Dogs\", \"en-GB\": \"Russian Subway Dogs\", \"es-419\": \"Russian Subway Dogs\", \"ja-JP\": \"Russian Subway Dogs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T14:13:37.430000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:16:09.460000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA27043_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T13:10:25.250000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:12:33.530000Z\", \"playDuration\": \"PT1H1M8S\"}, {\"titleId\": \"CUSA43561_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T15:45:11.830000Z\", \"lastPlayedDateTime\": \"2023-07-05T16:04:25.680000Z\", \"playDuration\": \"PT19M10S\"}, {\"titleId\": \"CUSA43562_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:56:01.570000Z\", \"lastPlayedDateTime\": \"2023-07-05T15:45:09.670000Z\", \"playDuration\": \"PT49M3S\"}, {\"titleId\": \"CUSA43560_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:02:37.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:55:50.730000Z\", \"playDuration\": \"PT52M52S\"}, {\"titleId\": \"CUSA43559_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T13:21:30.400000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:01:26.520000Z\", \"playDuration\": \"PT39M42S\"}, {\"titleId\": \"CUSA43353_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:17:03.880000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:31:56.250000Z\", \"playDuration\": \"PT8M45S\"}, {\"titleId\": \"CUSA43354_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:07:13.630000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:17:02.380000Z\", \"playDuration\": \"PT9M38S\"}, {\"titleId\": \"CUSA43356_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:53:48.540000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:06:31.320000Z\", \"playDuration\": \"PT12M13S\"}, {\"titleId\": \"CUSA43355_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:36:05.510000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:53:47.100000Z\", \"playDuration\": \"PT14M40S\"}, {\"titleId\": \"PPSA16103_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:12:26.770000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:14:54.860000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"PPSA16102_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:10:03.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:12:23.790000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA16101_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:06:06.120000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:09:58.630000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"PPSA16100_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:03:24.960000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:06:02.580000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"CUSA43011_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:57:52.030000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:03:21.420000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA43009_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:53:48.930000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:57:48.940000Z\", \"playDuration\": \"PT3M43S\"}, {\"titleId\": \"CUSA43008_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:50:11.060000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:53:45.810000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA43010_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:43:35.780000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:50:08.030000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA39493_00\", \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"localizedName\": \"The Quintessential Quintuplets Gotopuzu Story\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 9, \"concept\": {\"id\": 10006924, \"titleIds\": [\"CUSA39493_00\"], \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Quintessential Quintuplets Gotopuzu Story\", \"en-GB\": \"The Quintessential Quintuplets Gotopuzu Story\", \"ja-JP\": \"\\u4e94\\u7b49\\u5206\\u306e\\u82b1\\u5ac1 \\u3054\\u3068\\u3071\\u305a\\u30b9\\u30c8\\u30fc\\u30ea\\u30fc\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-04T10:01:36.180000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:39:02.790000Z\", \"playDuration\": \"PT8H30M27S\"}, {\"titleId\": \"CUSA43267_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-03T00:51:14.750000Z\", \"lastPlayedDateTime\": \"2023-07-03T01:21:08.020000Z\", \"playDuration\": \"PT28M43S\"}, {\"titleId\": \"CUSA43266_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T11:23:34.990000Z\", \"lastPlayedDateTime\": \"2023-07-02T13:11:03.500000Z\", \"playDuration\": \"PT1H40M37S\"}, {\"titleId\": \"CUSA41310_00\", \"name\": \"Houkago Cinderella 2\", \"localizedName\": \"Houkago Cinderella 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007608, \"titleIds\": [\"CUSA41311_00\", \"CUSA41310_00\"], \"name\": \"Houkago Cinderella 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Houkago Cinderella 2\", \"en-GB\": \"Houkago Cinderella 2\", \"ja-JP\": \"\\u653e\\u8ab2\\u5f8c\\u30b7\\u30f3\\u30c7\\u30ec\\u30e9\\uff12\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T07:15:30.840000Z\", \"lastPlayedDateTime\": \"2023-07-02T11:11:18.320000Z\", \"playDuration\": \"PT2H51M15S\"}, {\"titleId\": \"PPSA13286_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T13:17:31.730000Z\", \"lastPlayedDateTime\": \"2023-07-01T13:44:34.180000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"PPSA15895_00\", \"name\": \"Late Shift\", \"localizedName\": \"Late Shift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 227163, \"titleIds\": [\"CUSA07805_00\", \"CUSA07898_00\", \"CUSA16459_00\", \"CUSA14449_00\", \"PPSA15895_00\", \"PPSA15896_00\"], \"name\": \"Late Shift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Late Shift\", \"uk-UA\": \"Late Shift\", \"de-DE\": \"Late Shift\", \"en-US\": \"Late Shift\", \"ko-KR\": \"Late Shift\", \"pt-BR\": \"Late Shift\", \"es-ES\": \"Late Shift\", \"ar-AE\": \"Late Shift\", \"no-NO\": \"Late Shift\", \"fr-CA\": \"Late Shift\", \"it-IT\": \"Late Shift\", \"pl-PL\": \"Late Shift\", \"ru-RU\": \"Late Shift\", \"zh-Hans\": \"Late Shift\", \"nl-NL\": \"Late Shift\", \"pt-PT\": \"Late Shift\", \"zh-Hant\": \"Late Shift\", \"sv-SE\": \"Late Shift\", \"da-DK\": \"Late Shift\", \"tr-TR\": \"Late Shift\", \"fr-FR\": \"Late Shift\", \"en-GB\": \"Late Shift\", \"es-419\": \"Late Shift\", \"ja-JP\": \"Late Shift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:45:36.520000Z\", \"lastPlayedDateTime\": \"2023-07-01T12:55:17.010000Z\", \"playDuration\": \"PT5H48M11S\"}, {\"titleId\": \"PPSA16415_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:57.400000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:25:13.260000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA16417_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:27.640000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:54.990000Z\", \"playDuration\": \"PT23S\"}, {\"titleId\": \"PPSA16414_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:07.320000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:25.280000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"PPSA16416_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:23:44.590000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:04.990000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"CUSA43351_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:08:31.630000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:23:10.170000Z\", \"playDuration\": \"PT14M25S\"}, {\"titleId\": \"CUSA43350_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:53:01.620000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:08:26.340000Z\", \"playDuration\": \"PT14M19S\"}, {\"titleId\": \"CUSA43349_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:35:07.450000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:52:52.560000Z\", \"playDuration\": \"PT15M9S\"}, {\"titleId\": \"CUSA43352_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:08:15.570000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:29:05.640000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA17314_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:05:04.480000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:08:29.720000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA17315_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:01:42.180000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:05:02.100000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"CUSA05443_00\", \"name\": \"Fantasy Strike\", \"localizedName\": \"Fantasy Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 233566, \"titleIds\": [\"CUSA05443_00\", \"CUSA16518_00\"], \"name\": \"Fantasy Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"FIGHTING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fantasy Strike\", \"uk-UA\": \"Fantasy Strike\", \"de-DE\": \"Fantasy Strike\", \"en-US\": \"Fantasy Strike\", \"pt-BR\": \"Fantasy Strike\", \"es-ES\": \"Fantasy Strike\", \"ar-AE\": \"Fantasy Strike\", \"no-NO\": \"Fantasy Strike\", \"fr-CA\": \"Fantasy Strike\", \"it-IT\": \"Fantasy Strike\", \"pl-PL\": \"Fantasy Strike\", \"ru-RU\": \"Fantasy Strike\", \"nl-NL\": \"Fantasy Strike\", \"pt-PT\": \"Fantasy Strike\", \"sv-SE\": \"Fantasy Strike\", \"da-DK\": \"Fantasy Strike\", \"tr-TR\": \"Fantasy Strike\", \"fr-FR\": \"Fantasy Strike\", \"en-GB\": \"Fantasy Strike\", \"es-419\": \"Fantasy Strike\", \"ja-JP\": \"\\u30d5\\u30a1\\u30f3\\u30bf\\u30b8\\u30fc\\u30b9\\u30c8\\u30e9\\u30a4\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-07-26T04:29:45.470000Z\", \"lastPlayedDateTime\": \"2023-07-01T02:52:43.160000Z\", \"playDuration\": \"PT13H17M25S\"}, {\"titleId\": \"CUSA35809_00\", \"name\": \"Crazy Chicken Shooter Edition\", \"localizedName\": \"Crazy Chicken Shooter Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002523, \"titleIds\": [\"PPSA03116_00\", \"CUSA35809_00\", \"PPSA03117_00\", \"CUSA35810_00\"], \"name\": \"Crazy Chicken Shooter Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Crazy Chicken Shooter Edition\", \"uk-UA\": \"Crazy Chicken Shooter Edition\", \"de-DE\": \"Moorhuhn Shooter Edition\", \"en-US\": \"Crazy Chicken Shooter Edition\", \"pt-BR\": \"Crazy Chicken Shooter Edition\", \"es-ES\": \"Crazy Chicken Shooter Edition\", \"ar-AE\": \"Crazy Chicken Shooter Edition\", \"no-NO\": \"Crazy Chicken Shooter Edition\", \"fr-CA\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"it-IT\": \"Crazy Chicken Shooter Edition\", \"pl-PL\": \"Crazy Chicken Shooter Edition\", \"ru-RU\": \"Crazy Chicken Shooter Edition\", \"nl-NL\": \"Crazy Chicken Shooter Edition\", \"pt-PT\": \"Crazy Chicken Shooter Edition\", \"sv-SE\": \"Crazy Chicken Shooter Edition\", \"da-DK\": \"Crazy Chicken Shooter Edition\", \"tr-TR\": \"Crazy Chicken Shooter Edition\", \"fr-FR\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"en-GB\": \"Crazy Chicken Shooter Edition\", \"es-419\": \"Crazy Chicken Shooter Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T09:09:29.710000Z\", \"lastPlayedDateTime\": \"2023-06-30T13:34:50.690000Z\", \"playDuration\": \"PT2H48M25S\"}, {\"titleId\": \"PPSA16450_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:36:45.940000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:42:37.340000Z\", \"playDuration\": \"PT5M40S\"}, {\"titleId\": \"PPSA16451_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:29:06.880000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:36:43.900000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"PPSA04476_00\", \"name\": \"Fall Guys\", \"localizedName\": \"Fall Guys\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10003354, \"titleIds\": [\"CUSA31669_00\", \"CUSA29380_00\", \"CUSA29381_00\", \"CUSA29237_00\", \"CUSA29236_00\", \"PPSA04478_00\", \"PPSA04621_00\", \"PPSA04476_00\", \"PPSA04622_00\"], \"name\": \"Fall Guys\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/51c49ae8adf97335366f0cedb4b7b74800fa46965fba980d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/fefe9a7e66213f0355217eb4987c399fc7b86fb720a6e684.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/8b779dd7af0398b9f311091bdb3bfb973b01d558ae5ea1bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/87904fbef3e6527be0e853a804b513cbc7a15570a5f63b31.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/96eb8b2dd96571b78316f1f0158b3d1ef1625cfa33bfe734.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fall Guys\", \"uk-UA\": \"Fall Guys\", \"de-DE\": \"Fall Guys\", \"en-US\": \"Fall Guys\", \"ko-KR\": \"Fall Guys\", \"pt-BR\": \"Fall Guys\", \"es-ES\": \"Fall Guys\", \"ar-AE\": \"Fall Guys\", \"no-NO\": \"Fall Guys\", \"fr-CA\": \"Fall Guys\", \"it-IT\": \"Fall Guys\", \"pl-PL\": \"Fall Guys\", \"ru-RU\": \"Fall Guys\", \"zh-Hans\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"nl-NL\": \"Fall Guys\", \"pt-PT\": \"Fall Guys\", \"zh-Hant\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"sv-SE\": \"Fall Guys\", \"da-DK\": \"Fall Guys\", \"tr-TR\": \"Fall Guys\", \"fr-FR\": \"Fall Guys\", \"en-GB\": \"Fall Guys\", \"es-419\": \"Fall Guys\", \"ja-JP\": \"Fall Guys\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/51c49ae8adf97335366f0cedb4b7b74800fa46965fba980d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/fefe9a7e66213f0355217eb4987c399fc7b86fb720a6e684.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/8b779dd7af0398b9f311091bdb3bfb973b01d558ae5ea1bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/87904fbef3e6527be0e853a804b513cbc7a15570a5f63b31.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/96eb8b2dd96571b78316f1f0158b3d1ef1625cfa33bfe734.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-21T08:07:57.700000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:58:16.000000Z\", \"playDuration\": \"PT9M12S\"}, {\"titleId\": \"PPSA08439_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T06:11:01.950000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:47:46.760000Z\", \"playDuration\": \"PT2H36M33S\"}, {\"titleId\": \"CUSA34504_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T14:25:15.930000Z\", \"lastPlayedDateTime\": \"2023-06-30T05:32:00.880000Z\", \"playDuration\": \"PT3H44M30S\"}, {\"titleId\": \"CUSA24787_00\", \"name\": \"Double Pug Switch\", \"localizedName\": \"Double Pug Switch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 234008, \"titleIds\": [\"CUSA15758_00\", \"CUSA24787_00\"], \"name\": \"Double Pug Switch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Double Pug Switch\", \"uk-UA\": \"Double Pug Switch\", \"de-DE\": \"Double Pug Switch\", \"en-US\": \"Double Pug Switch\", \"pt-BR\": \"Double Pug Switch\", \"es-ES\": \"Double Pug Switch\", \"ar-AE\": \"Double Pug Switch\", \"no-NO\": \"Double Pug Switch\", \"fr-CA\": \"Double Pug Switch\", \"it-IT\": \"Double Pug Switch\", \"pl-PL\": \"Double Pug Switch\", \"ru-RU\": \"Double Pug Switch\", \"nl-NL\": \"Double Pug Switch\", \"pt-PT\": \"Double Pug Switch\", \"sv-SE\": \"Double Pug Switch\", \"da-DK\": \"Double Pug Switch\", \"tr-TR\": \"Double Pug Switch\", \"fr-FR\": \"Double Pug Switch\", \"en-GB\": \"Double Pug Switch\", \"es-419\": \"Double Pug Switch\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T06:05:00.970000Z\", \"lastPlayedDateTime\": \"2023-06-29T09:00:15.010000Z\", \"playDuration\": \"PT1H59M13S\"}, {\"titleId\": \"CUSA29776_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T04:12:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-29T05:54:30.790000Z\", \"playDuration\": \"PT1H41M19S\"}, {\"titleId\": \"PPSA11427_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T03:02:16.330000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:19:39.390000Z\", \"playDuration\": \"PT17M20S\"}, {\"titleId\": \"PPSA11426_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:56:10.890000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:02:14.440000Z\", \"playDuration\": \"PT5M57S\"}, {\"titleId\": \"CUSA38207_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:48:20.860000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:56:09.050000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA38208_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:39:07.530000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:48:18.620000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"CUSA42290_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:39:56.500000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:39:02.110000Z\", \"playDuration\": \"PT52M36S\"}, {\"titleId\": \"CUSA28677_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T11:49:30.320000Z\", \"lastPlayedDateTime\": \"2023-06-28T15:33:17.730000Z\", \"playDuration\": \"PT3H28M10S\"}, {\"titleId\": \"CUSA30060_00\", \"name\": \"Creepy Tale\", \"localizedName\": \"Creepy Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003675, \"titleIds\": [\"CUSA30095_00\", \"CUSA30060_00\"], \"name\": \"Creepy Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Creepy Tale\", \"uk-UA\": \"Creepy Tale\", \"de-DE\": \"Creepy Tale\", \"en-US\": \"Creepy Tale\", \"pt-BR\": \"Creepy Tale\", \"es-ES\": \"Creepy Tale\", \"ar-AE\": \"Creepy Tale\", \"no-NO\": \"Creepy Tale\", \"fr-CA\": \"Creepy Tale\", \"it-IT\": \"Creepy Tale\", \"pl-PL\": \"Creepy Tale\", \"ru-RU\": \"Creepy Tale\", \"nl-NL\": \"Creepy Tale\", \"pt-PT\": \"Creepy Tale\", \"sv-SE\": \"Creepy Tale\", \"da-DK\": \"Creepy Tale\", \"tr-TR\": \"Creepy Tale\", \"fr-FR\": \"Creepy Tale\", \"en-GB\": \"Creepy Tale\", \"es-419\": \"Creepy Tale\", \"ja-JP\": \"Creepy Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T10:40:10.530000Z\", \"lastPlayedDateTime\": \"2023-06-28T11:22:17.280000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"PPSA12436_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:21:50.280000Z\", \"lastPlayedDateTime\": \"2023-06-28T06:10:47.480000Z\", \"playDuration\": \"PT1H41M55S\"}, {\"titleId\": \"CUSA43662_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:15:49.570000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:18:59.010000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA44028_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:07:29.270000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:15:02.040000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA44027_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:04:08.510000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:07:25.430000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA44026_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:00:48.250000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:04:04.780000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA44029_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T03:56:02.750000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:59:33.820000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"CUSA39403_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T09:08:50.920000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:11:19.000000Z\", \"playDuration\": \"PT2H3M31S\"}, {\"titleId\": \"PPSA14477_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T12:24:24.300000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:46:29.720000Z\", \"playDuration\": \"PT20M13S\"}, {\"titleId\": \"PPSA14478_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:59:21.000000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:24:22.220000Z\", \"playDuration\": \"PT24M43S\"}, {\"titleId\": \"PPSA04895_00\", \"name\": \"Very Very Valet\", \"localizedName\": \"Very Very Valet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003435, \"titleIds\": [\"PPSA04894_00\", \"PPSA04895_00\"], \"name\": \"Very Very Valet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PARTY\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"uk-UA\": \"Very Very Valet\", \"de-DE\": \"Very Very Valet\", \"en-US\": \"Very Very Valet\", \"ko-KR\": \"Very Very Valet\", \"es-ES\": \"Very Very Valet\", \"fr-CA\": \"Very Very Valet\", \"it-IT\": \"Very Very Valet\", \"ru-RU\": \"Very Very Valet\", \"zh-Hans\": \"Very Very Valet\", \"zh-Hant\": \"Very Very Valet\", \"fr-FR\": \"Very Very Valet\", \"en-GB\": \"Very Very Valet\", \"es-419\": \"Very Very Valet\", \"ja-JP\": \"Very Very Valet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T07:16:30.450000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:59:14.260000Z\", \"playDuration\": \"PT1H51M29S\"}, {\"titleId\": \"CUSA41450_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:19:23.290000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:56:53.100000Z\", \"playDuration\": \"PT24M7S\"}, {\"titleId\": \"CUSA41451_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T10:25:00.750000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:19:21.130000Z\", \"playDuration\": \"PT31M38S\"}, {\"titleId\": \"CUSA44001_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T05:48:59.680000Z\", \"lastPlayedDateTime\": \"2023-06-27T07:11:32.910000Z\", \"playDuration\": \"PT1H22M25S\"}, {\"titleId\": \"CUSA44000_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T03:53:02.810000Z\", \"lastPlayedDateTime\": \"2023-06-27T05:43:50.150000Z\", \"playDuration\": \"PT1H50M43S\"}, {\"titleId\": \"CUSA29947_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T14:35:09.730000Z\", \"lastPlayedDateTime\": \"2023-06-27T02:53:57.440000Z\", \"playDuration\": \"PT1H58M12S\"}, {\"titleId\": \"PPSA04955_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:56:03.960000Z\", \"lastPlayedDateTime\": \"2023-06-26T14:35:07.590000Z\", \"playDuration\": \"PT3H50M12S\"}, {\"titleId\": \"CUSA43661_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:22:04.710000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:27:36.420000Z\", \"playDuration\": \"PT5M28S\"}, {\"titleId\": \"CUSA43659_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:18:33.700000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:21:25.100000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA43660_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:08:40.240000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:18:30.140000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"CUSA42512_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:04:05.740000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:08:17.750000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"CUSA44060_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:46:28.610000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:58:22.790000Z\", \"playDuration\": \"PT11M50S\"}, {\"titleId\": \"CUSA44059_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:09:28.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:46:27.140000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA42511_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:02:07.230000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:08:43.430000Z\", \"playDuration\": \"PT4M16S\"}, {\"titleId\": \"CUSA35675_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:54:11.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:58:23.970000Z\", \"playDuration\": \"PT4M9S\"}, {\"titleId\": \"CUSA35674_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:34:01.380000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:54:09.760000Z\", \"playDuration\": \"PT10M\"}, {\"titleId\": \"CUSA35889_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:28:25.400000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:33:29.890000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"CUSA35888_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:22:20.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:28:23.530000Z\", \"playDuration\": \"PT5M4S\"}, {\"titleId\": \"CUSA35887_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:18:24.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:22:17.820000Z\", \"playDuration\": \"PT3M42S\"}], \"nextOffset\": 600, \"previousOffset\": 399, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"PPSA15345_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA50636_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T10:57:10.280000Z\", \"lastPlayedDateTime\": \"2023-07-25T12:30:03.830000Z\", \"playDuration\": \"PT1H30M\"}, {\"titleId\": \"CUSA42362_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA50636_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T07:05:25.900000Z\", \"lastPlayedDateTime\": \"2023-07-25T10:44:54.290000Z\", \"playDuration\": \"PT2H39M11S\"}, {\"titleId\": \"PPSA16270_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:46:23.470000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:48:26.230000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"PPSA14213_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:44:42.160000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:46:20.590000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"PPSA14214_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:42:17.520000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:44:39.340000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA16271_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:40:27.980000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:42:14.670000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA43231_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:38:22.570000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:40:02.690000Z\", \"playDuration\": \"PT1M29S\"}, {\"titleId\": \"CUSA41166_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:36:36.890000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:38:19.150000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA41167_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:34:54.690000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:36:33.810000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA43232_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:32:59.530000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:34:52.210000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"PPSA15401_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T05:14:21.370000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:22:38.880000Z\", \"playDuration\": \"PT1H8M14S\"}, {\"titleId\": \"PPSA15400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T04:10:18.920000Z\", \"lastPlayedDateTime\": \"2023-07-25T05:14:19.410000Z\", \"playDuration\": \"PT1H3M37S\"}, {\"titleId\": \"CUSA42399_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T01:18:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-25T02:49:53.900000Z\", \"playDuration\": \"PT1H12M16S\"}, {\"titleId\": \"CUSA42400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-24T13:30:18.860000Z\", \"lastPlayedDateTime\": \"2023-07-24T15:35:37.070000Z\", \"playDuration\": \"PT1H38M52S\"}, {\"titleId\": \"PPSA16727_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T14:08:25.840000Z\", \"lastPlayedDateTime\": \"2023-07-23T15:01:02.200000Z\", \"playDuration\": \"PT52M10S\"}, {\"titleId\": \"CUSA43626_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T12:53:01.020000Z\", \"lastPlayedDateTime\": \"2023-07-23T14:07:14.080000Z\", \"playDuration\": \"PT1H11M29S\"}, {\"titleId\": \"PPSA06922_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T10:40:20.330000Z\", \"lastPlayedDateTime\": \"2023-07-23T12:07:45.630000Z\", \"playDuration\": \"PT1H26M50S\"}, {\"titleId\": \"CUSA32774_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T05:42:44.530000Z\", \"lastPlayedDateTime\": \"2023-07-23T08:59:47.640000Z\", \"playDuration\": \"PT3H14M49S\"}, {\"titleId\": \"PPSA16622_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T03:49:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-23T05:12:25.360000Z\", \"playDuration\": \"PT1H22M38S\"}, {\"titleId\": \"CUSA43535_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T01:43:04.640000Z\", \"lastPlayedDateTime\": \"2023-07-23T03:49:40.890000Z\", \"playDuration\": \"PT2H3M13S\"}, {\"titleId\": \"PPSA15722_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T14:53:27.180000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:54:07.250000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42776_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T13:02:49.610000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:46:46.880000Z\", \"playDuration\": \"PT57M23S\"}, {\"titleId\": \"PPSA05394_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T12:00:52.620000Z\", \"lastPlayedDateTime\": \"2023-07-22T13:02:46.290000Z\", \"playDuration\": \"PT1H1M43S\"}, {\"titleId\": \"PPSA05395_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T10:33:07.480000Z\", \"lastPlayedDateTime\": \"2023-07-22T12:00:49.190000Z\", \"playDuration\": \"PT58M2S\"}, {\"titleId\": \"CUSA27163_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T01:43:01.390000Z\", \"lastPlayedDateTime\": \"2023-07-22T03:01:33.390000Z\", \"playDuration\": \"PT1H18M14S\"}, {\"titleId\": \"CUSA27164_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T22:02:59.250000Z\", \"lastPlayedDateTime\": \"2023-07-22T01:42:57.400000Z\", \"playDuration\": \"PT1H15M25S\"}, {\"titleId\": \"CUSA43643_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\", \"PPSA16741_00\", \"PPSA16740_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:27:50.470000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:29:19.150000Z\", \"playDuration\": \"PT1M25S\"}, {\"titleId\": \"CUSA43642_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\", \"PPSA16741_00\", \"PPSA16740_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:22:44.130000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:25:10.090000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA17157_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:19:08.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:22:40.760000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA17158_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:14:11.550000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:19:05.000000Z\", \"playDuration\": \"PT3M54S\"}, {\"titleId\": \"PPSA17155_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:11:12.690000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:14:08.180000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA17156_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:08:12.650000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:11:09.100000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA43992_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:57:13.500000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:01:00.440000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"CUSA43990_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:49:00.270000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:57:10.270000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43991_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:45:53.560000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:48:57.100000Z\", \"playDuration\": \"PT2M58S\"}, {\"titleId\": \"CUSA43993_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:40:04.060000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:45:50.420000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA44224_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:35:10.370000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:37:43.360000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA44223_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:32:09.640000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:35:07.770000Z\", \"playDuration\": \"PT2M49S\"}, {\"titleId\": \"PPSA12585_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:23:05.000000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:26:55.180000Z\", \"playDuration\": \"PT3M33S\"}, {\"titleId\": \"PPSA12586_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:18:58.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:23:03.310000Z\", \"playDuration\": \"PT3M57S\"}, {\"titleId\": \"CUSA39542_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:14:54.110000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:18:56.170000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA39543_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:10:16.670000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:14:52.050000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA42695_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T00:50:53.290000Z\", \"lastPlayedDateTime\": \"2023-07-21T08:01:10.000000Z\", \"playDuration\": \"PT5H52M1S\"}, {\"titleId\": \"CUSA42694_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:54:22.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T15:34:30.760000Z\", \"playDuration\": \"PT8H56M29S\"}, {\"titleId\": \"PPSA15897_00\", \"name\": \"The Complex\", \"localizedName\": \"The Complex\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10000347, \"titleIds\": [\"CUSA32389_00\", \"CUSA32390_00\", \"PPSA15898_00\", \"PPSA15897_00\", \"CUSA18654_00\", \"CUSA18645_00\"], \"name\": \"The Complex\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Complex\", \"uk-UA\": \"The Complex\", \"de-DE\": \"The Complex\", \"en-US\": \"The Complex\", \"ko-KR\": \"The Complex\", \"pt-BR\": \"The Complex\", \"es-ES\": \"The Complex\", \"ar-AE\": \"The Complex\", \"no-NO\": \"The Complex\", \"fr-CA\": \"The Complex\", \"it-IT\": \"The Complex\", \"pl-PL\": \"The Complex\", \"ru-RU\": \"The Complex\", \"zh-Hans\": \"The Complex \\u590d\\u4f53\", \"nl-NL\": \"The Complex\", \"pt-PT\": \"The Complex\", \"zh-Hant\": \"The Complex \\u590d\\u4f53\", \"sv-SE\": \"The Complex\", \"da-DK\": \"The Complex\", \"tr-TR\": \"The Complex\", \"fr-FR\": \"The Complex\", \"en-GB\": \"The Complex\", \"es-419\": \"The Complex\", \"ja-JP\": \"The Complex\\u30af\\u30ed\\u30e6\\u30ea\\u56e3\\u5730\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-19T05:16:18.540000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:34:32.830000Z\", \"playDuration\": \"PT4H29M32S\"}, {\"titleId\": \"PPSA13287_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:16:32.860000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:29:01.550000Z\", \"playDuration\": \"PT11M31S\"}, {\"titleId\": \"PPSA17415_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:12:55.890000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:15:48.680000Z\", \"playDuration\": \"PT2M33S\"}, {\"titleId\": \"PPSA17414_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:09:43.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:12:52.770000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17365_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:05:16.340000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:09:16.960000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"PPSA17364_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:55:17.510000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:05:13.540000Z\", \"playDuration\": \"PT9M44S\"}, {\"titleId\": \"CUSA44178_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:48:34.170000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:54:46.280000Z\", \"playDuration\": \"PT6M8S\"}, {\"titleId\": \"CUSA44179_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:34:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:48:31.680000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"CUSA44222_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:19:54.130000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:33:48.030000Z\", \"playDuration\": \"PT13M13S\"}, {\"titleId\": \"CUSA44221_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:01:10.420000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:19:51.040000Z\", \"playDuration\": \"PT18M6S\"}, {\"titleId\": \"CUSA28035_00\", \"name\": \"OMNO\", \"localizedName\": \"OMNO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 10002920, \"titleIds\": [\"CUSA28681_00\", \"CUSA28035_00\"], \"name\": \"OMNO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"OMNO\", \"uk-UA\": \"OMNO\", \"de-DE\": \"OMNO\", \"en-US\": \"OMNO\", \"ko-KR\": \"OMNO\", \"pt-BR\": \"OMNO\", \"es-ES\": \"OMNO\", \"ar-AE\": \"OMNO\", \"no-NO\": \"OMNO\", \"fr-CA\": \"OMNO\", \"it-IT\": \"OMNO\", \"pl-PL\": \"OMNO\", \"ru-RU\": \"OMNO\", \"zh-Hans\": \"OMNO\", \"nl-NL\": \"OMNO\", \"pt-PT\": \"OMNO\", \"zh-Hant\": \"OMNO\", \"sv-SE\": \"OMNO\", \"da-DK\": \"OMNO\", \"tr-TR\": \"OMNO\", \"fr-FR\": \"OMNO\", \"en-GB\": \"OMNO\", \"es-419\": \"OMNO\", \"ja-JP\": \"OMNO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T10:42:00.110000Z\", \"lastPlayedDateTime\": \"2023-07-19T03:02:22.710000Z\", \"playDuration\": \"PT5H44M33S\"}, {\"titleId\": \"PPSA15226_00\", \"name\": \"NARAKA: BLADEPOINT\", \"localizedName\": \"NARAKA: BLADEPOINT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004405, \"titleIds\": [\"CUSA42174_00\", \"CUSA42663_00\", \"PPSA16591_00\", \"CUSA42749_00\", \"PPSA15226_00\", \"CUSA42669_00\", \"PPSA15239_00\", \"CUSA43513_00\", \"CUSA42670_00\", \"CUSA42176_00\"], \"name\": \"NARAKA: BLADEPOINT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/0d8d0ccdd599507fc9dd32fcf6067b0e7428e2d0e3e4749e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/0410/9fddde8707cc6217eca855c3e1231c0b2322a97c851d794b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/51678970811202d2465c410ff63829f19cd4ce3e6ce599ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NARAKA: BLADEPOINT\", \"uk-UA\": \"NARAKA: BLADEPOINT\", \"de-DE\": \"NARAKA: BLADEPOINT\", \"en-US\": \"NARAKA: BLADEPOINT\", \"ko-KR\": \"\\ub098\\ub77c\\uce74:\\ube14\\ub808\\uc774\\ub4dc\\ud3ec\\uc778\\ud2b8\", \"pt-BR\": \"NARAKA: BLADEPOINT\", \"es-ES\": \"NARAKA: BLADEPOINT\", \"ar-AE\": \"NARAKA: BLADEPOINT\", \"no-NO\": \"NARAKA: BLADEPOINT\", \"fr-CA\": \"NARAKA: BLADEPOINT\", \"it-IT\": \"NARAKA: BLADEPOINT\", \"pl-PL\": \"NARAKA: BLADEPOINT\", \"ru-RU\": \"NARAKA: BLADEPOINT\", \"zh-Hans\": \"\\u6c38\\u52ab\\u65e0\\u95f4\", \"nl-NL\": \"NARAKA: BLADEPOINT\", \"pt-PT\": \"NARAKA: BLADEPOINT\", \"zh-Hant\": \"\\u6c38\\u52ab\\u7121\\u9593\", \"sv-SE\": \"NARAKA: BLADEPOINT\", \"da-DK\": \"NARAKA: BLADEPOINT\", \"tr-TR\": \"NARAKA: BLADEPOINT\", \"fr-FR\": \"NARAKA: BLADEPOINT\", \"en-GB\": \"NARAKA: BLADEPOINT\", \"es-419\": \"NARAKA: BLADEPOINT\", \"ja-JP\": \"NARAKA: BLADEPOINT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/0d8d0ccdd599507fc9dd32fcf6067b0e7428e2d0e3e4749e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/0410/9fddde8707cc6217eca855c3e1231c0b2322a97c851d794b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/51678970811202d2465c410ff63829f19cd4ce3e6ce599ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T08:30:42.550000Z\", \"lastPlayedDateTime\": \"2023-07-18T09:15:41.870000Z\", \"playDuration\": \"PT44M49S\"}, {\"titleId\": \"CUSA26140_00\", \"name\": \"I Am Dead\", \"localizedName\": \"I Am Dead\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002127, \"titleIds\": [\"CUSA26137_00\", \"CUSA26138_00\", \"PPSA02616_00\", \"CUSA26139_00\", \"CUSA26140_00\", \"PPSA02618_00\", \"PPSA02617_00\", \"PPSA02619_00\"], \"name\": \"I Am Dead\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I Am Dead\", \"uk-UA\": \"I Am Dead\", \"de-DE\": \"I Am Dead\", \"en-US\": \"I Am Dead\", \"ko-KR\": \"I Am Dead\", \"pt-BR\": \"I Am Dead\", \"es-ES\": \"I Am Dead\", \"ar-AE\": \"I Am Dead\", \"no-NO\": \"I Am Dead\", \"fr-CA\": \"I Am Dead\", \"it-IT\": \"I Am Dead\", \"pl-PL\": \"I Am Dead\", \"ru-RU\": \"I Am Dead\", \"zh-Hans\": \"I Am Dead\", \"nl-NL\": \"I Am Dead\", \"pt-PT\": \"I Am Dead\", \"zh-Hant\": \"I Am Dead\", \"sv-SE\": \"I Am Dead\", \"da-DK\": \"I Am Dead\", \"tr-TR\": \"I Am Dead\", \"fr-FR\": \"I Am Dead\", \"en-GB\": \"I Am Dead\", \"es-419\": \"I Am Dead\", \"ja-JP\": \"\\u30a2\\u30a4\\u30fb\\u30a2\\u30e0\\u30fb\\u30c7\\u30c3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T07:53:58.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T08:29:30.440000Z\", \"playDuration\": \"PT34M34S\"}, {\"titleId\": \"PPSA14487_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:56:32.350000Z\", \"lastPlayedDateTime\": \"2023-07-18T07:01:32.080000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA14488_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:48:43.730000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:56:30.200000Z\", \"playDuration\": \"PT7M33S\"}, {\"titleId\": \"CUSA41462_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:18:21.190000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:48:41.550000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA41463_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:06:05.150000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:18:19.210000Z\", \"playDuration\": \"PT11M27S\"}, {\"titleId\": \"PPSA09448_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-16T04:59:59.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:48:46.330000Z\", \"playDuration\": \"PT15H37M30S\"}, {\"titleId\": \"CUSA35737_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T07:01:59.500000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:00:54.750000Z\", \"playDuration\": \"PT19H24M33S\"}, {\"titleId\": \"CUSA23986_00\", \"name\": \"Carto\", \"localizedName\": \"Carto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 10000947, \"titleIds\": [\"CUSA23986_00\", \"CUSA23985_00\"], \"name\": \"Carto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Carto\", \"uk-UA\": \"Carto\", \"de-DE\": \"Carto\", \"en-US\": \"Carto\", \"ko-KR\": \"Carto\", \"pt-BR\": \"Carto\", \"es-ES\": \"Carto\", \"ar-AE\": \"Carto\", \"no-NO\": \"Carto\", \"fr-CA\": \"Carto\", \"it-IT\": \"Carto\", \"pl-PL\": \"Carto\", \"ru-RU\": \"Carto\", \"zh-Hans\": \"Carto\", \"nl-NL\": \"Carto\", \"pt-PT\": \"Carto\", \"zh-Hant\": \"Carto\", \"sv-SE\": \"Carto\", \"da-DK\": \"Carto\", \"tr-TR\": \"Carto\", \"fr-FR\": \"Carto\", \"en-GB\": \"Carto\", \"es-419\": \"Carto\", \"ja-JP\": \"Carto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:01:08.960000Z\", \"lastPlayedDateTime\": \"2023-07-18T03:27:01.460000Z\", \"playDuration\": \"PT11H9M45S\"}, {\"titleId\": \"PPSA17660_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T05:18:28.380000Z\", \"lastPlayedDateTime\": \"2023-07-15T06:08:13.430000Z\", \"playDuration\": \"PT49M41S\"}, {\"titleId\": \"PPSA17661_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T04:22:02.110000Z\", \"lastPlayedDateTime\": \"2023-07-15T05:18:25.230000Z\", \"playDuration\": \"PT48M36S\"}, {\"titleId\": \"PPSA17658_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T03:33:42.030000Z\", \"lastPlayedDateTime\": \"2023-07-15T04:21:58.970000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"PPSA17659_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T01:55:58.440000Z\", \"lastPlayedDateTime\": \"2023-07-15T03:33:38.800000Z\", \"playDuration\": \"PT1H4M23S\"}, {\"titleId\": \"PPSA16546_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T14:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-07-14T15:21:36.320000Z\", \"playDuration\": \"PT54M3S\"}, {\"titleId\": \"PPSA16545_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:51:17.000000Z\", \"lastPlayedDateTime\": \"2023-07-14T14:01:43.310000Z\", \"playDuration\": \"PT1H34M23S\"}, {\"titleId\": \"PPSA04158_00\", \"name\": \"Goat Simulator 3\", \"localizedName\": \"Goat Simulator 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 25, \"concept\": {\"id\": 10003123, \"titleIds\": [\"PPSA04158_00\", \"PPSA04159_00\", \"CUSA46679_00\", \"CUSA46680_00\"], \"name\": \"Goat Simulator 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/ed0ee1c7b237e9b3c2a0b2f1758801568d14b9849bd346b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/d2cf22c77055c3fd51c889c5a266d6212669fafe99eaddb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Goat Simulator 3\", \"uk-UA\": \"Goat Simulator 3\", \"de-DE\": \"Goat Simulator 3\", \"en-US\": \"Goat Simulator 3\", \"ko-KR\": \"Goat Simulator 3\", \"pt-BR\": \"Goat Simulator 3\", \"es-ES\": \"Project Zero\", \"ar-AE\": \"Goat Simulator 3\", \"no-NO\": \"Goat Simulator 3\", \"fr-CA\": \"Goat Simulator 3\", \"it-IT\": \"Goat Simulator 3\", \"pl-PL\": \"Goat Simulator 3\", \"ru-RU\": \"Goat Simulator 3\", \"zh-Hans\": \"Goat Simulator 3\", \"nl-NL\": \"Goat Simulator 3\", \"pt-PT\": \"Goat Simulator 3\", \"zh-Hant\": \"Goat Simulator 3\", \"sv-SE\": \"Goat Simulator 3\", \"da-DK\": \"Goat Simulator 3\", \"tr-TR\": \"Goat Simulator 3\", \"fr-FR\": \"Goat Simulator 3\", \"en-GB\": \"Goat Simulator 3\", \"es-419\": \"Goat Simulator 3\", \"ja-JP\": \"Goat Simulator 3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/ed0ee1c7b237e9b3c2a0b2f1758801568d14b9849bd346b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/d2cf22c77055c3fd51c889c5a266d6212669fafe99eaddb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-01-27T13:21:22.170000Z\", \"lastPlayedDateTime\": \"2023-07-14T13:47:37.830000Z\", \"playDuration\": \"PT17H52M24S\"}, {\"titleId\": \"CUSA43909_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:44:40.800000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:47:23.430000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA43906_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:37:29.140000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:44:39.150000Z\", \"playDuration\": \"PT3M6S\"}, {\"titleId\": \"CUSA43907_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:35:36.470000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:37:27.250000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA43908_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T09:04:41.410000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:35:34.690000Z\", \"playDuration\": \"PT1H30M41S\"}, {\"titleId\": \"PPSA17078_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:25:45.490000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:39:13.030000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"PPSA17077_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:12:07.820000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:25:42.600000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43930_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:58:07.300000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:12:03.990000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43931_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:41:53.990000Z\", \"lastPlayedDateTime\": \"2023-07-14T07:58:03.430000Z\", \"playDuration\": \"PT16M\"}, {\"titleId\": \"PPSA11431_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:57:20.090000Z\", \"lastPlayedDateTime\": \"2023-07-13T07:01:30.430000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"PPSA11430_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:52:50.910000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:57:18.250000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA38212_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:46:28.980000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:50:28.990000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA09073_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T00:48:56.560000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:43:06.790000Z\", \"playDuration\": \"PT4H16M18S\"}, {\"titleId\": \"CUSA35347_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:21:09.030000Z\", \"lastPlayedDateTime\": \"2023-07-13T00:48:53.390000Z\", \"playDuration\": \"PT7H59M9S\"}, {\"titleId\": \"PPSA15554_00\", \"name\": \"Dead Cells\", \"localizedName\": \"Dead Cells\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 231053, \"titleIds\": [\"CUSA10485_00\", \"CUSA11253_00\", \"CUSA10484_00\", \"CUSA18439_00\", \"CUSA24085_00\", \"CUSA24086_00\", \"CUSA42849_00\", \"PPSA15554_00\", \"PPSA15552_00\", \"CUSA42830_00\"], \"name\": \"Dead Cells\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Cells\", \"uk-UA\": \"Dead Cells\", \"de-DE\": \"Dead Cells\", \"en-US\": \"Dead Cells\", \"ko-KR\": \"\\ub370\\ub4dc \\uc140 (Dead Cells)\", \"pt-BR\": \"Dead Cells\", \"es-ES\": \"Dead Cells\", \"ar-AE\": \"Dead Cells\", \"no-NO\": \"Dead Cells\", \"fr-CA\": \"Dead Cells\", \"it-IT\": \"Dead Cells\", \"pl-PL\": \"Dead Cells\", \"ru-RU\": \"Dead Cells\", \"zh-Hans\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"nl-NL\": \"Dead Cells\", \"pt-PT\": \"Dead Cells\", \"zh-Hant\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"sv-SE\": \"Dead Cells\", \"da-DK\": \"Dead Cells\", \"tr-TR\": \"Dead Cells\", \"fr-FR\": \"Dead Cells\", \"en-GB\": \"Dead Cells\", \"es-419\": \"Dead Cells\", \"ja-JP\": \"Dead Cells\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:55:08.860000Z\", \"lastPlayedDateTime\": \"2023-07-10T04:43:29.700000Z\", \"playDuration\": \"PT6M53S\"}, {\"titleId\": \"CUSA16005_00\", \"name\": \"Lonely Mountains: Downhill\", \"localizedName\": \"Lonely Mountains: Downhill\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234290, \"titleIds\": [\"CUSA16005_00\", \"CUSA23928_00\", \"CUSA15961_00\"], \"name\": \"Lonely Mountains: Downhill\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lonely Mountains: Downhill\", \"uk-UA\": \"Lonely Mountains: Downhill\", \"de-DE\": \"Lonely Mountains: Downhill\", \"en-US\": \"Lonely Mountains: Downhill\", \"ko-KR\": \"Lonely Mountains: Downhill\", \"pt-BR\": \"Lonely Mountains: Downhill\", \"es-ES\": \"Lonely Mountains: Downhill\", \"ar-AE\": \"Lonely Mountains: Downhill\", \"no-NO\": \"Lonely Mountains: Downhill\", \"fr-CA\": \"Lonely Mountains: Downhill\", \"it-IT\": \"Lonely Mountains: Downhill\", \"pl-PL\": \"Lonely Mountains: Downhill\", \"ru-RU\": \"Lonely Mountains: Downhill\", \"zh-Hans\": \"Lonely Mountains: Downhill\", \"nl-NL\": \"Lonely Mountains: Downhill\", \"pt-PT\": \"Lonely Mountains: Downhill\", \"zh-Hant\": \"Lonely Mountains: Downhill\", \"sv-SE\": \"Lonely Mountains: Downhill\", \"da-DK\": \"Lonely Mountains: Downhill\", \"tr-TR\": \"Lonely Mountains: Downhill\", \"fr-FR\": \"Lonely Mountains: Downhill\", \"en-GB\": \"Lonely Mountains: Downhill\", \"es-419\": \"Lonely Mountains: Downhill\", \"ja-JP\": \"Lonely Mountains: Downhill\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:46:11.770000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:54:20.920000Z\", \"playDuration\": \"PT8M4S\"}, {\"titleId\": \"PPSA05850_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:17:02.160000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:44:16.170000Z\", \"playDuration\": \"PT14M5S\"}, {\"titleId\": \"CUSA31412_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:13:16.260000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:39:29.750000Z\", \"playDuration\": \"PT15M35S\"}, {\"titleId\": \"PPSA06577_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:10:03.960000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:11:40.700000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA32294_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:07:49.710000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:09:59.230000Z\", \"playDuration\": \"PT2M2S\"}, {\"titleId\": \"CUSA44349_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:02:52.670000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:04:59.570000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA44350_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:57:38.830000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:02:50.280000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"PPSA07023_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:48:46.760000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:56:22.110000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA32884_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:39:34.480000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:48:16.350000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"CUSA18152_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-26T15:20:43.840000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:07:36.840000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA18449_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-05-15T12:08:21.880000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:57:20.800000Z\", \"playDuration\": \"PT22M43S\"}, {\"titleId\": \"PPSA15832_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T13:14:28.190000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:02:26.900000Z\", \"playDuration\": \"PT39M40S\"}, {\"titleId\": \"PPSA15833_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T12:33:54.730000Z\", \"lastPlayedDateTime\": \"2023-07-09T13:13:56.120000Z\", \"playDuration\": \"PT39M36S\"}, {\"titleId\": \"CUSA42784_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T11:45:00.800000Z\", \"lastPlayedDateTime\": \"2023-07-09T12:33:39.050000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"CUSA42785_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T08:56:48.460000Z\", \"lastPlayedDateTime\": \"2023-07-09T11:44:58.610000Z\", \"playDuration\": \"PT1H27S\"}, {\"titleId\": \"PPSA16522_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T07:45:23.650000Z\", \"lastPlayedDateTime\": \"2023-07-09T08:37:21.820000Z\", \"playDuration\": \"PT47M7S\"}, {\"titleId\": \"PPSA16523_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T05:02:50.300000Z\", \"lastPlayedDateTime\": \"2023-07-09T07:45:21.860000Z\", \"playDuration\": \"PT1H1M5S\"}, {\"titleId\": \"CUSA43442_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T02:42:12.080000Z\", \"lastPlayedDateTime\": \"2023-07-09T04:31:10.520000Z\", \"playDuration\": \"PT47M37S\"}, {\"titleId\": \"CUSA43441_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:39:52.610000Z\", \"lastPlayedDateTime\": \"2023-07-09T02:36:09.680000Z\", \"playDuration\": \"PT1H55M7S\"}, {\"titleId\": \"PPSA05326_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:15:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:18:24.340000Z\", \"playDuration\": \"PT42S\"}, {\"titleId\": \"CUSA30449_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 4, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:58:22.150000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:17:11.490000Z\", \"playDuration\": \"PT5H55M\"}, {\"titleId\": \"PPSA17389_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:37:55.500000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:46:35.570000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17391_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:30:19.440000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:37:52.550000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA17392_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:23:40.570000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:30:16.690000Z\", \"playDuration\": \"PT6M2S\"}, {\"titleId\": \"PPSA17390_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:23:37.720000Z\", \"playDuration\": \"PT9M8S\"}, {\"titleId\": \"CUSA43838_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:27:24.050000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:30:25.160000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA44124_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:23:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:27:20.640000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA16728_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T07:30:56.460000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:23:01.930000Z\", \"playDuration\": \"PT48M40S\"}, {\"titleId\": \"CUSA43627_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T04:03:21.900000Z\", \"lastPlayedDateTime\": \"2023-07-07T07:30:54.120000Z\", \"playDuration\": \"PT3H14M22S\"}, {\"titleId\": \"PPSA16140_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T03:57:34.810000Z\", \"lastPlayedDateTime\": \"2023-07-07T04:01:33.730000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA43034_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:34:14.580000Z\", \"lastPlayedDateTime\": \"2023-07-07T03:57:33.060000Z\", \"playDuration\": \"PT47M6S\"}, {\"titleId\": \"PPSA17076_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:17:54.510000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:32:19.620000Z\", \"playDuration\": \"PT14M22S\"}, {\"titleId\": \"PPSA17075_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:03:38.720000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:17:51.750000Z\", \"playDuration\": \"PT13M52S\"}, {\"titleId\": \"CUSA43928_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:48:06.310000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:03:34.860000Z\", \"playDuration\": \"PT13M12S\"}, {\"titleId\": \"CUSA43929_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:02:34.070000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:48:02.420000Z\", \"playDuration\": \"PT13M43S\"}, {\"titleId\": \"PPSA11359_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:58:54.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:02:10.250000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11360_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:58:52.970000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"CUSA38099_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:53:17.680000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:56:32.960000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA38100_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:49:24.480000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:53:05.710000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA42524_00\", \"name\": \"Russian Subway Dogs\", \"localizedName\": \"Russian Subway Dogs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231153, \"titleIds\": [\"CUSA11099_00\", \"CUSA42524_00\"], \"name\": \"Russian Subway Dogs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Russian Subway Dogs\", \"uk-UA\": \"Russian Subway Dogs\", \"de-DE\": \"Russian Subway Dogs\", \"en-US\": \"Russian Subway Dogs\", \"pt-BR\": \"Russian Subway Dogs\", \"es-ES\": \"Russian Subway Dogs\", \"ar-AE\": \"Russian Subway Dogs\", \"no-NO\": \"Russian Subway Dogs\", \"fr-CA\": \"Russian Subway Dogs\", \"it-IT\": \"Russian Subway Dogs\", \"pl-PL\": \"Russian Subway Dogs\", \"ru-RU\": \"Russian Subway Dogs\", \"zh-Hans\": \"Russian Subway Dogs\", \"nl-NL\": \"Russian Subway Dogs\", \"pt-PT\": \"Russian Subway Dogs\", \"zh-Hant\": \"Russian Subway Dogs\", \"sv-SE\": \"Russian Subway Dogs\", \"da-DK\": \"Russian Subway Dogs\", \"tr-TR\": \"Russian Subway Dogs\", \"fr-FR\": \"Russian Subway Dogs\", \"en-GB\": \"Russian Subway Dogs\", \"es-419\": \"Russian Subway Dogs\", \"ja-JP\": \"Russian Subway Dogs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T14:13:37.430000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:16:09.460000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA27043_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T13:10:25.250000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:12:33.530000Z\", \"playDuration\": \"PT1H1M8S\"}, {\"titleId\": \"CUSA43561_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T15:45:11.830000Z\", \"lastPlayedDateTime\": \"2023-07-05T16:04:25.680000Z\", \"playDuration\": \"PT19M10S\"}, {\"titleId\": \"CUSA43562_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:56:01.570000Z\", \"lastPlayedDateTime\": \"2023-07-05T15:45:09.670000Z\", \"playDuration\": \"PT49M3S\"}, {\"titleId\": \"CUSA43560_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:02:37.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:55:50.730000Z\", \"playDuration\": \"PT52M52S\"}, {\"titleId\": \"CUSA43559_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T13:21:30.400000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:01:26.520000Z\", \"playDuration\": \"PT39M42S\"}, {\"titleId\": \"CUSA43353_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:17:03.880000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:31:56.250000Z\", \"playDuration\": \"PT8M45S\"}, {\"titleId\": \"CUSA43354_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:07:13.630000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:17:02.380000Z\", \"playDuration\": \"PT9M38S\"}, {\"titleId\": \"CUSA43356_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:53:48.540000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:06:31.320000Z\", \"playDuration\": \"PT12M13S\"}, {\"titleId\": \"CUSA43355_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:36:05.510000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:53:47.100000Z\", \"playDuration\": \"PT14M40S\"}, {\"titleId\": \"PPSA16103_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:12:26.770000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:14:54.860000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"PPSA16102_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:10:03.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:12:23.790000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA16101_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:06:06.120000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:09:58.630000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"PPSA16100_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:03:24.960000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:06:02.580000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"CUSA43011_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:57:52.030000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:03:21.420000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA43009_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:53:48.930000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:57:48.940000Z\", \"playDuration\": \"PT3M43S\"}, {\"titleId\": \"CUSA43008_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:50:11.060000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:53:45.810000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA43010_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:43:35.780000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:50:08.030000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA39493_00\", \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"localizedName\": \"The Quintessential Quintuplets Gotopuzu Story\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 9, \"concept\": {\"id\": 10006924, \"titleIds\": [\"CUSA39493_00\"], \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Quintessential Quintuplets Gotopuzu Story\", \"en-GB\": \"The Quintessential Quintuplets Gotopuzu Story\", \"ja-JP\": \"\\u4e94\\u7b49\\u5206\\u306e\\u82b1\\u5ac1 \\u3054\\u3068\\u3071\\u305a\\u30b9\\u30c8\\u30fc\\u30ea\\u30fc\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-04T10:01:36.180000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:39:02.790000Z\", \"playDuration\": \"PT8H30M27S\"}, {\"titleId\": \"CUSA43267_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-03T00:51:14.750000Z\", \"lastPlayedDateTime\": \"2023-07-03T01:21:08.020000Z\", \"playDuration\": \"PT28M43S\"}, {\"titleId\": \"CUSA43266_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T11:23:34.990000Z\", \"lastPlayedDateTime\": \"2023-07-02T13:11:03.500000Z\", \"playDuration\": \"PT1H40M37S\"}, {\"titleId\": \"CUSA41310_00\", \"name\": \"Houkago Cinderella 2\", \"localizedName\": \"Houkago Cinderella 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007608, \"titleIds\": [\"CUSA41311_00\", \"CUSA41310_00\"], \"name\": \"Houkago Cinderella 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Houkago Cinderella 2\", \"en-GB\": \"Houkago Cinderella 2\", \"ja-JP\": \"\\u653e\\u8ab2\\u5f8c\\u30b7\\u30f3\\u30c7\\u30ec\\u30e9\\uff12\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T07:15:30.840000Z\", \"lastPlayedDateTime\": \"2023-07-02T11:11:18.320000Z\", \"playDuration\": \"PT2H51M15S\"}, {\"titleId\": \"PPSA13286_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T13:17:31.730000Z\", \"lastPlayedDateTime\": \"2023-07-01T13:44:34.180000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"PPSA15895_00\", \"name\": \"Late Shift\", \"localizedName\": \"Late Shift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 227163, \"titleIds\": [\"CUSA07805_00\", \"CUSA07898_00\", \"CUSA16459_00\", \"CUSA14449_00\", \"PPSA15895_00\", \"PPSA15896_00\"], \"name\": \"Late Shift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Late Shift\", \"uk-UA\": \"Late Shift\", \"de-DE\": \"Late Shift\", \"en-US\": \"Late Shift\", \"ko-KR\": \"Late Shift\", \"pt-BR\": \"Late Shift\", \"es-ES\": \"Late Shift\", \"ar-AE\": \"Late Shift\", \"no-NO\": \"Late Shift\", \"fr-CA\": \"Late Shift\", \"it-IT\": \"Late Shift\", \"pl-PL\": \"Late Shift\", \"ru-RU\": \"Late Shift\", \"zh-Hans\": \"Late Shift\", \"nl-NL\": \"Late Shift\", \"pt-PT\": \"Late Shift\", \"zh-Hant\": \"Late Shift\", \"sv-SE\": \"Late Shift\", \"da-DK\": \"Late Shift\", \"tr-TR\": \"Late Shift\", \"fr-FR\": \"Late Shift\", \"en-GB\": \"Late Shift\", \"es-419\": \"Late Shift\", \"ja-JP\": \"Late Shift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:45:36.520000Z\", \"lastPlayedDateTime\": \"2023-07-01T12:55:17.010000Z\", \"playDuration\": \"PT5H48M11S\"}, {\"titleId\": \"PPSA16415_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:57.400000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:25:13.260000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA16417_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:27.640000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:54.990000Z\", \"playDuration\": \"PT23S\"}, {\"titleId\": \"PPSA16414_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:07.320000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:25.280000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"PPSA16416_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:23:44.590000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:04.990000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"CUSA43351_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:08:31.630000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:23:10.170000Z\", \"playDuration\": \"PT14M25S\"}, {\"titleId\": \"CUSA43350_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:53:01.620000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:08:26.340000Z\", \"playDuration\": \"PT14M19S\"}, {\"titleId\": \"CUSA43349_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:35:07.450000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:52:52.560000Z\", \"playDuration\": \"PT15M9S\"}, {\"titleId\": \"CUSA43352_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:08:15.570000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:29:05.640000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA17314_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:05:04.480000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:08:29.720000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA17315_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:01:42.180000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:05:02.100000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"CUSA05443_00\", \"name\": \"Fantasy Strike\", \"localizedName\": \"Fantasy Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 233566, \"titleIds\": [\"CUSA05443_00\", \"CUSA16518_00\"], \"name\": \"Fantasy Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"FIGHTING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fantasy Strike\", \"uk-UA\": \"Fantasy Strike\", \"de-DE\": \"Fantasy Strike\", \"en-US\": \"Fantasy Strike\", \"pt-BR\": \"Fantasy Strike\", \"es-ES\": \"Fantasy Strike\", \"ar-AE\": \"Fantasy Strike\", \"no-NO\": \"Fantasy Strike\", \"fr-CA\": \"Fantasy Strike\", \"it-IT\": \"Fantasy Strike\", \"pl-PL\": \"Fantasy Strike\", \"ru-RU\": \"Fantasy Strike\", \"nl-NL\": \"Fantasy Strike\", \"pt-PT\": \"Fantasy Strike\", \"sv-SE\": \"Fantasy Strike\", \"da-DK\": \"Fantasy Strike\", \"tr-TR\": \"Fantasy Strike\", \"fr-FR\": \"Fantasy Strike\", \"en-GB\": \"Fantasy Strike\", \"es-419\": \"Fantasy Strike\", \"ja-JP\": \"\\u30d5\\u30a1\\u30f3\\u30bf\\u30b8\\u30fc\\u30b9\\u30c8\\u30e9\\u30a4\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-07-26T04:29:45.470000Z\", \"lastPlayedDateTime\": \"2023-07-01T02:52:43.160000Z\", \"playDuration\": \"PT13H17M25S\"}, {\"titleId\": \"CUSA35809_00\", \"name\": \"Crazy Chicken Shooter Edition\", \"localizedName\": \"Crazy Chicken Shooter Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002523, \"titleIds\": [\"PPSA03116_00\", \"CUSA35809_00\", \"PPSA03117_00\", \"CUSA35810_00\"], \"name\": \"Crazy Chicken Shooter Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Crazy Chicken Shooter Edition\", \"uk-UA\": \"Crazy Chicken Shooter Edition\", \"de-DE\": \"Moorhuhn Shooter Edition\", \"en-US\": \"Crazy Chicken Shooter Edition\", \"pt-BR\": \"Crazy Chicken Shooter Edition\", \"es-ES\": \"Crazy Chicken Shooter Edition\", \"ar-AE\": \"Crazy Chicken Shooter Edition\", \"no-NO\": \"Crazy Chicken Shooter Edition\", \"fr-CA\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"it-IT\": \"Crazy Chicken Shooter Edition\", \"pl-PL\": \"Crazy Chicken Shooter Edition\", \"ru-RU\": \"Crazy Chicken Shooter Edition\", \"nl-NL\": \"Crazy Chicken Shooter Edition\", \"pt-PT\": \"Crazy Chicken Shooter Edition\", \"sv-SE\": \"Crazy Chicken Shooter Edition\", \"da-DK\": \"Crazy Chicken Shooter Edition\", \"tr-TR\": \"Crazy Chicken Shooter Edition\", \"fr-FR\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"en-GB\": \"Crazy Chicken Shooter Edition\", \"es-419\": \"Crazy Chicken Shooter Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T09:09:29.710000Z\", \"lastPlayedDateTime\": \"2023-06-30T13:34:50.690000Z\", \"playDuration\": \"PT2H48M25S\"}, {\"titleId\": \"PPSA16450_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:36:45.940000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:42:37.340000Z\", \"playDuration\": \"PT5M40S\"}, {\"titleId\": \"PPSA16451_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:29:06.880000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:36:43.900000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"PPSA04476_00\", \"name\": \"Fall Guys\", \"localizedName\": \"Fall Guys\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10003354, \"titleIds\": [\"CUSA31669_00\", \"CUSA29380_00\", \"CUSA29381_00\", \"CUSA29237_00\", \"CUSA29236_00\", \"PPSA04478_00\", \"PPSA04621_00\", \"PPSA04476_00\", \"PPSA04622_00\"], \"name\": \"Fall Guys\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/b3af97cd2ba460834ac4201c7dee2f19cf88f65446bf14bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/904e1ae213215571bb24c8c7d8459772e46fcafe068f6298.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/223313d501df552d905da27fd4e03ac75d372517668daad0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/744c1557cc22d264ce900d9e89b81e767a52a48d0449744b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/5a36d196253b9b33bf8ea1db2a5ce874695704646f31c990.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fall Guys\", \"uk-UA\": \"Fall Guys\", \"de-DE\": \"Fall Guys\", \"en-US\": \"Fall Guys\", \"ko-KR\": \"Fall Guys\", \"pt-BR\": \"Fall Guys\", \"es-ES\": \"Fall Guys\", \"ar-AE\": \"Fall Guys\", \"no-NO\": \"Fall Guys\", \"fr-CA\": \"Fall Guys\", \"it-IT\": \"Fall Guys\", \"pl-PL\": \"Fall Guys\", \"ru-RU\": \"Fall Guys\", \"zh-Hans\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"nl-NL\": \"Fall Guys\", \"pt-PT\": \"Fall Guys\", \"zh-Hant\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"sv-SE\": \"Fall Guys\", \"da-DK\": \"Fall Guys\", \"tr-TR\": \"Fall Guys\", \"fr-FR\": \"Fall Guys\", \"en-GB\": \"Fall Guys\", \"es-419\": \"Fall Guys\", \"ja-JP\": \"Fall Guys\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/b3af97cd2ba460834ac4201c7dee2f19cf88f65446bf14bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/904e1ae213215571bb24c8c7d8459772e46fcafe068f6298.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/223313d501df552d905da27fd4e03ac75d372517668daad0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/744c1557cc22d264ce900d9e89b81e767a52a48d0449744b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/5a36d196253b9b33bf8ea1db2a5ce874695704646f31c990.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-21T08:07:57.700000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:58:16.000000Z\", \"playDuration\": \"PT9M12S\"}, {\"titleId\": \"PPSA08439_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T06:11:01.950000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:47:46.760000Z\", \"playDuration\": \"PT2H36M33S\"}, {\"titleId\": \"CUSA34504_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T14:25:15.930000Z\", \"lastPlayedDateTime\": \"2023-06-30T05:32:00.880000Z\", \"playDuration\": \"PT3H44M30S\"}, {\"titleId\": \"CUSA24787_00\", \"name\": \"Double Pug Switch\", \"localizedName\": \"Double Pug Switch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 234008, \"titleIds\": [\"CUSA15758_00\", \"CUSA24787_00\"], \"name\": \"Double Pug Switch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Double Pug Switch\", \"uk-UA\": \"Double Pug Switch\", \"de-DE\": \"Double Pug Switch\", \"en-US\": \"Double Pug Switch\", \"pt-BR\": \"Double Pug Switch\", \"es-ES\": \"Double Pug Switch\", \"ar-AE\": \"Double Pug Switch\", \"no-NO\": \"Double Pug Switch\", \"fr-CA\": \"Double Pug Switch\", \"it-IT\": \"Double Pug Switch\", \"pl-PL\": \"Double Pug Switch\", \"ru-RU\": \"Double Pug Switch\", \"nl-NL\": \"Double Pug Switch\", \"pt-PT\": \"Double Pug Switch\", \"sv-SE\": \"Double Pug Switch\", \"da-DK\": \"Double Pug Switch\", \"tr-TR\": \"Double Pug Switch\", \"fr-FR\": \"Double Pug Switch\", \"en-GB\": \"Double Pug Switch\", \"es-419\": \"Double Pug Switch\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T06:05:00.970000Z\", \"lastPlayedDateTime\": \"2023-06-29T09:00:15.010000Z\", \"playDuration\": \"PT1H59M13S\"}, {\"titleId\": \"CUSA29776_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T04:12:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-29T05:54:30.790000Z\", \"playDuration\": \"PT1H41M19S\"}, {\"titleId\": \"PPSA11427_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T03:02:16.330000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:19:39.390000Z\", \"playDuration\": \"PT17M20S\"}, {\"titleId\": \"PPSA11426_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:56:10.890000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:02:14.440000Z\", \"playDuration\": \"PT5M57S\"}, {\"titleId\": \"CUSA38207_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:48:20.860000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:56:09.050000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA38208_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:39:07.530000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:48:18.620000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"CUSA42290_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:39:56.500000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:39:02.110000Z\", \"playDuration\": \"PT52M36S\"}, {\"titleId\": \"CUSA28677_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T11:49:30.320000Z\", \"lastPlayedDateTime\": \"2023-06-28T15:33:17.730000Z\", \"playDuration\": \"PT3H28M10S\"}, {\"titleId\": \"CUSA30060_00\", \"name\": \"Creepy Tale\", \"localizedName\": \"Creepy Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003675, \"titleIds\": [\"CUSA30095_00\", \"CUSA30060_00\"], \"name\": \"Creepy Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Creepy Tale\", \"uk-UA\": \"Creepy Tale\", \"de-DE\": \"Creepy Tale\", \"en-US\": \"Creepy Tale\", \"pt-BR\": \"Creepy Tale\", \"es-ES\": \"Creepy Tale\", \"ar-AE\": \"Creepy Tale\", \"no-NO\": \"Creepy Tale\", \"fr-CA\": \"Creepy Tale\", \"it-IT\": \"Creepy Tale\", \"pl-PL\": \"Creepy Tale\", \"ru-RU\": \"Creepy Tale\", \"nl-NL\": \"Creepy Tale\", \"pt-PT\": \"Creepy Tale\", \"sv-SE\": \"Creepy Tale\", \"da-DK\": \"Creepy Tale\", \"tr-TR\": \"Creepy Tale\", \"fr-FR\": \"Creepy Tale\", \"en-GB\": \"Creepy Tale\", \"es-419\": \"Creepy Tale\", \"ja-JP\": \"Creepy Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T10:40:10.530000Z\", \"lastPlayedDateTime\": \"2023-06-28T11:22:17.280000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"PPSA12436_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:21:50.280000Z\", \"lastPlayedDateTime\": \"2023-06-28T06:10:47.480000Z\", \"playDuration\": \"PT1H41M55S\"}, {\"titleId\": \"CUSA43662_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:15:49.570000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:18:59.010000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA44028_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:07:29.270000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:15:02.040000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA44027_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:04:08.510000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:07:25.430000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA44026_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:00:48.250000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:04:04.780000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA44029_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T03:56:02.750000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:59:33.820000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"CUSA39403_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T09:08:50.920000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:11:19.000000Z\", \"playDuration\": \"PT2H3M31S\"}, {\"titleId\": \"PPSA14477_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T12:24:24.300000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:46:29.720000Z\", \"playDuration\": \"PT20M13S\"}, {\"titleId\": \"PPSA14478_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:59:21.000000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:24:22.220000Z\", \"playDuration\": \"PT24M43S\"}, {\"titleId\": \"PPSA04895_00\", \"name\": \"Very Very Valet\", \"localizedName\": \"Very Very Valet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003435, \"titleIds\": [\"PPSA04894_00\", \"PPSA04895_00\"], \"name\": \"Very Very Valet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PARTY\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"uk-UA\": \"Very Very Valet\", \"de-DE\": \"Very Very Valet\", \"en-US\": \"Very Very Valet\", \"ko-KR\": \"Very Very Valet\", \"es-ES\": \"Very Very Valet\", \"fr-CA\": \"Very Very Valet\", \"it-IT\": \"Very Very Valet\", \"ru-RU\": \"Very Very Valet\", \"zh-Hans\": \"Very Very Valet\", \"zh-Hant\": \"Very Very Valet\", \"fr-FR\": \"Very Very Valet\", \"en-GB\": \"Very Very Valet\", \"es-419\": \"Very Very Valet\", \"ja-JP\": \"Very Very Valet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T07:16:30.450000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:59:14.260000Z\", \"playDuration\": \"PT1H51M29S\"}, {\"titleId\": \"CUSA41450_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:19:23.290000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:56:53.100000Z\", \"playDuration\": \"PT24M7S\"}, {\"titleId\": \"CUSA41451_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T10:25:00.750000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:19:21.130000Z\", \"playDuration\": \"PT31M38S\"}, {\"titleId\": \"CUSA44001_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T05:48:59.680000Z\", \"lastPlayedDateTime\": \"2023-06-27T07:11:32.910000Z\", \"playDuration\": \"PT1H22M25S\"}, {\"titleId\": \"CUSA44000_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T03:53:02.810000Z\", \"lastPlayedDateTime\": \"2023-06-27T05:43:50.150000Z\", \"playDuration\": \"PT1H50M43S\"}, {\"titleId\": \"CUSA29947_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T14:35:09.730000Z\", \"lastPlayedDateTime\": \"2023-06-27T02:53:57.440000Z\", \"playDuration\": \"PT1H58M12S\"}, {\"titleId\": \"PPSA04955_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:56:03.960000Z\", \"lastPlayedDateTime\": \"2023-06-26T14:35:07.590000Z\", \"playDuration\": \"PT3H50M12S\"}, {\"titleId\": \"CUSA43661_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:22:04.710000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:27:36.420000Z\", \"playDuration\": \"PT5M28S\"}, {\"titleId\": \"CUSA43659_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:18:33.700000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:21:25.100000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA43660_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:08:40.240000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:18:30.140000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"CUSA42512_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:04:05.740000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:08:17.750000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"CUSA44060_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:46:28.610000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:58:22.790000Z\", \"playDuration\": \"PT11M50S\"}, {\"titleId\": \"CUSA44059_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:09:28.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:46:27.140000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA42511_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:02:07.230000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:08:43.430000Z\", \"playDuration\": \"PT4M16S\"}, {\"titleId\": \"CUSA35675_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:54:11.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:58:23.970000Z\", \"playDuration\": \"PT4M9S\"}, {\"titleId\": \"CUSA35674_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:34:01.380000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:54:09.760000Z\", \"playDuration\": \"PT10M\"}, {\"titleId\": \"CUSA35889_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:28:25.400000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:33:29.890000Z\", \"playDuration\": \"PT4M31S\"}], \"nextOffset\": 600, \"previousOffset\": 399, \"totalItemCount\": 13571}"
}
}
},
@@ -360,56 +356,56 @@
"message": "OK"
},
"headers": {
- "Pragma": [
- "no-cache"
+ "Cache-Control": [
+ "max-age=0, no-cache, no-store"
+ ],
+ "Date": [
+ "Sun, 12 Jan 2025 03:19:13 GMT"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=63072000; includeSubDomains"
+ ],
+ "Access-Control-Allow-Methods": [
+ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
],
"Connection": [
"keep-alive",
"Transfer-Encoding"
],
"X-Psn-Request-Id": [
- "c03934c0-8443-1031-bf26-41df208fe1e0"
+ "912ac0c0-94d0-1031-b424-300c43bd6bf1"
],
- "Access-Control-Allow-Origin": [
- "*"
+ "Access-Control-Allow-Headers": [
+ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
],
- "X-Psn-Correlation-Id": [
- "c03934c0-8443-1031-bf25-41df208fe1e0"
+ "Pragma": [
+ "no-cache"
],
- "Cache-Control": [
- "max-age=0, no-cache, no-store"
+ "X-Psn-Correlation-Id": [
+ "912ac0c0-94d0-1031-b423-300c43bd6bf1"
],
"Transfer-Encoding": [
"chunked"
],
- "Strict-Transport-Security": [
- "max-age=63072000; includeSubDomains"
+ "Expires": [
+ "Sun, 12 Jan 2025 03:19:13 GMT"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "Access-Control-Max-Age": [
+ "3600"
],
- "Access-Control-Allow-Methods": [
- "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD"
+ "Access-Control-Allow-Origin": [
+ "*"
],
- "Expires": [
- "Sun, 16 Jun 2024 23:00:03 GMT"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Type": [
"application/json"
],
- "Date": [
- "Sun, 16 Jun 2024 23:00:03 GMT"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Access-Control-Allow-Headers": [
- "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform"
- ],
"Set-Cookie": "REDACTED"
},
"body": {
- "string": "{\"titles\": [{\"titleId\": \"CUSA35890_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:13:32.170000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:18:22.250000Z\", \"playDuration\": \"PT4M11S\"}, {\"titleId\": \"PPSA11350_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:01:46.560000Z\", \"lastPlayedDateTime\": \"2023-06-25T10:50:55.110000Z\", \"playDuration\": \"PT53S\"}, {\"titleId\": \"PPSA11349_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:00:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:01:43.910000Z\", \"playDuration\": \"PT48S\"}, {\"titleId\": \"PPSA16939_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:57:14.440000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:00:46.320000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA16942_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:53:50.870000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:57:11.560000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA16940_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:49:17.750000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:53:47.970000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA43807_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:27:04.350000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:49:14.300000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"PPSA08030_00\", \"name\": \"FINAL FANTASY XVI\", \"localizedName\": \"FINAL FANTASY XVI\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 10, \"concept\": {\"id\": 10002100, \"titleIds\": [\"PPSA08030_00\", \"PPSA13801_00\", \"PPSA13802_00\", \"PPSA13803_00\", \"PPSA13804_00\", \"PPSA10666_00\", \"PPSA10664_00\", \"PPSA10665_00\"], \"name\": \"FINAL FANTASY XVI\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"FINAL FANTASY XVI\", \"uk-UA\": \"FINAL FANTASY XVI\", \"de-DE\": \"FINAL FANTASY XVI\", \"en-US\": \"FINAL FANTASY XVI\", \"ko-KR\": \"FINAL FANTASY XVI\", \"pt-BR\": \"FINAL FANTASY XVI\", \"es-ES\": \"FINAL FANTASY XVI\", \"ar-AE\": \"FINAL FANTASY XVI\", \"no-NO\": \"FINAL FANTASY XVI\", \"fr-CA\": \"FINAL FANTASY XVI\", \"it-IT\": \"FINAL FANTASY XVI\", \"pl-PL\": \"FINAL FANTASY XVI\", \"ru-RU\": \"FINAL FANTASY XVI\", \"zh-Hans\": \"\\u6700\\u7ec8\\u5e7b\\u60f3 16\", \"nl-NL\": \"FINAL FANTASY XVI\", \"pt-PT\": \"FINAL FANTASY XVI\", \"zh-Hant\": \"FINAL FANTASY XVI\", \"sv-SE\": \"FINAL FANTASY XVI\", \"da-DK\": \"FINAL FANTASY XVI\", \"tr-TR\": \"FINAL FANTASY XVI\", \"fr-FR\": \"FINAL FANTASY XVI\", \"en-GB\": \"FINAL FANTASY XVI\", \"es-419\": \"FINAL FANTASY XVI\", \"ja-JP\": \"FINAL FANTASY XVI\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T05:05:01.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:26:58.710000Z\", \"playDuration\": \"PT45H4M10S\"}, {\"titleId\": \"CUSA25953_00\", \"name\": \"Let's Cook Together\", \"localizedName\": \"Let's Cook Together\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 19, \"concept\": {\"id\": 10002052, \"titleIds\": [\"CUSA25954_00\", \"CUSA25953_00\"], \"name\": \"Let's Cook Together\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Cook Together\", \"uk-UA\": \"Let's Cook Together\", \"de-DE\": \"Let's Cook Together\", \"en-US\": \"Let's Cook Together\", \"ko-KR\": \"Let's Cook Together\", \"pt-BR\": \"Let's Cook Together\", \"es-ES\": \"Let's Cook Together\", \"ar-AE\": \"Let's Cook Together\", \"no-NO\": \"Let's Cook Together\", \"fr-CA\": \"Let's Cook Together\", \"it-IT\": \"Let's Cook Together\", \"pl-PL\": \"Let's Cook Together\", \"ru-RU\": \"Let's Cook Together\", \"zh-Hans\": \"Let's Cook Together\", \"nl-NL\": \"Let's Cook Together\", \"pt-PT\": \"Let's Cook Together\", \"zh-Hant\": \"Let's Cook Together\", \"sv-SE\": \"Let's Cook Together\", \"da-DK\": \"Let's Cook Together\", \"tr-TR\": \"Let's Cook Together\", \"fr-FR\": \"Let's Cook Together\", \"en-GB\": \"Let's Cook Together\", \"es-419\": \"Let's Cook Together\", \"ja-JP\": \"Let's Cook Together\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-27T06:59:58.430000Z\", \"lastPlayedDateTime\": \"2023-06-25T02:03:08.710000Z\", \"playDuration\": \"PT5H51M12S\"}, {\"titleId\": \"CUSA38091_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:17:36.410000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:18:37.650000Z\", \"playDuration\": \"PT58S\"}, {\"titleId\": \"CUSA38092_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:16:14.430000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:17:34.510000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA42528_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T03:32:10.970000Z\", \"lastPlayedDateTime\": \"2023-06-22T05:04:45.550000Z\", \"playDuration\": \"PT1H31M58S\"}, {\"titleId\": \"CUSA42526_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T00:58:36.860000Z\", \"lastPlayedDateTime\": \"2023-06-22T03:32:06.830000Z\", \"playDuration\": \"PT1H50M3S\"}, {\"titleId\": \"CUSA42525_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:54:53.690000Z\", \"lastPlayedDateTime\": \"2023-06-21T13:35:30.080000Z\", \"playDuration\": \"PT1H40M16S\"}, {\"titleId\": \"CUSA42592_00\", \"name\": \"Balloon Girl\", \"localizedName\": \"Balloon Girl\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007891, \"titleIds\": [\"CUSA42593_00\", \"CUSA42592_00\", \"CUSA42594_00\", \"CUSA42591_00\"], \"name\": \"Balloon Girl\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Balloon Girl\", \"uk-UA\": \"Balloon Girl\", \"de-DE\": \"Balloon Girl\", \"en-US\": \"Balloon Girl\", \"ko-KR\": \"Balloon Girl\", \"pt-BR\": \"Balloon Girl\", \"es-ES\": \"Balloon Girl\", \"ar-AE\": \"Balloon Girl\", \"no-NO\": \"Balloon Girl\", \"fr-CA\": \"Balloon Girl\", \"it-IT\": \"Balloon Girl\", \"pl-PL\": \"Balloon Girl\", \"ru-RU\": \"Balloon Girl\", \"zh-Hans\": \"Balloon Girl\", \"nl-NL\": \"Balloon Girl\", \"pt-PT\": \"Balloon Girl\", \"zh-Hant\": \"Balloon Girl\", \"sv-SE\": \"Balloon Girl\", \"da-DK\": \"Balloon Girl\", \"tr-TR\": \"Balloon Girl\", \"fr-FR\": \"Balloon Girl\", \"en-GB\": \"Balloon Girl\", \"es-419\": \"Balloon Girl\", \"ja-JP\": \"Balloon Girl\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:27:02.140000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:48:03.340000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"PPSA08558_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:08:05.850000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:23:32.170000Z\", \"playDuration\": \"PT15M22S\"}, {\"titleId\": \"PPSA08559_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:51:25.460000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:08:04.080000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"CUSA34667_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:33:21.910000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:49:54.160000Z\", \"playDuration\": \"PT16M29S\"}, {\"titleId\": \"CUSA34668_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:08:07.480000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:33:20.380000Z\", \"playDuration\": \"PT24M19S\"}, {\"titleId\": \"PPSA13396_00\", \"name\": \"Living with Horses: My Horse Farm\", \"localizedName\": \"Living with Horses: My Horse Farm\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007183, \"titleIds\": [\"PPSA13396_00\", \"PPSA13397_00\"], \"name\": \"Living with Horses: My Horse Farm\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hevosel\\u00e4m\\u00e4\\u00e4: Oma hevostilani\", \"uk-UA\": \"\\u0416\\u0438\\u0442\\u0442\\u044f \\u0437 \\u043a\\u0456\\u043d\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u0456\\u043d\\u043d\\u0430 \\u0444\\u0435\\u0440\\u043c\\u0430\", \"de-DE\": \"Mein Reiterhof - Pferde, Turniere, Abenteuer\", \"en-US\": \"Living with Horses: My Horse Farm\", \"pt-BR\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"es-ES\": \"Vida entre caballos: mi granja equina\", \"ar-AE\": \"\\u0627\\u0644\\u0639\\u064a\\u0634 \\u0645\\u0639 \\u0627\\u0644\\u062e\\u064a\\u0648\\u0644: \\u0645\\u0632\\u0631\\u0639\\u0629 \\u062e\\u064a\\u0648\\u0644\\u064a\", \"no-NO\": \"Livet med hester: Min hesteg\\u00e5rd\", \"fr-CA\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"it-IT\": \"Una vita a cavallo: Il mio maneggio\", \"pl-PL\": \"\\u017bycie z ko\\u0144mi: Moja farma koni\", \"ru-RU\": \"\\u0416\\u0438\\u0437\\u043d\\u044c \\u0441 \\u043b\\u043e\\u0448\\u0430\\u0434\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u043e\\u043d\\u043d\\u0430\\u044f \\u0444\\u0435\\u0440\\u043c\\u0430\", \"nl-NL\": \"Leven met paarden: Mijn manege\", \"pt-PT\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"sv-SE\": \"Leva med h\\u00e4star: Min h\\u00e4stg\\u00e5rd\", \"da-DK\": \"Livet med heste: Min hestefarm\", \"tr-TR\": \"Atlarla Ya\\u015famak: At \\u00c7iftli\\u011fim\", \"fr-FR\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"en-GB\": \"Living with Horses: My Horse Farm\", \"es-419\": \"Vida entre caballos: mi granja equina\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:08:12.420000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:41:26.070000Z\", \"playDuration\": \"PT32M19S\"}, {\"titleId\": \"CUSA37885_00\", \"name\": \"Touchdown Pinball\", \"localizedName\": \"Touchdown Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004659, \"titleIds\": [\"CUSA37885_00\", \"CUSA37884_00\", \"PPSA06804_00\", \"PPSA06805_00\", \"PPSA07907_00\"], \"name\": \"Touchdown Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Touchdown Pinball\", \"uk-UA\": \"Touchdown Pinball\", \"de-DE\": \"Touchdown Pinball\", \"en-US\": \"Touchdown Pinball\", \"pt-BR\": \"Touchdown Pinball\", \"es-ES\": \"Touchdown Pinball\", \"ar-AE\": \"Touchdown Pinball\", \"no-NO\": \"Touchdown Pinball\", \"fr-CA\": \"Touchdown Pinball\", \"it-IT\": \"Touchdown Pinball\", \"pl-PL\": \"Touchdown Pinball\", \"ru-RU\": \"Touchdown Pinball\", \"nl-NL\": \"Touchdown Pinball\", \"pt-PT\": \"Touchdown Pinball\", \"sv-SE\": \"Touchdown Pinball\", \"da-DK\": \"Touchdown Pinball\", \"tr-TR\": \"Touchdown Pinball\", \"fr-FR\": \"Touchdown Pinball\", \"en-GB\": \"Touchdown Pinball\", \"es-419\": \"Touchdown Pinball\", \"ja-JP\": \"\\u30bf\\u30c3\\u30c1\\u30c0\\u30a6\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T06:17:35.670000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:07:32.800000Z\", \"playDuration\": \"PT49M29S\"}, {\"titleId\": \"CUSA37883_00\", \"name\": \"Titans Pinball\", \"localizedName\": \"Titans Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004803, \"titleIds\": [\"PPSA07100_00\", \"PPSA11148_00\", \"PPSA07101_00\", \"CUSA37882_00\", \"CUSA37883_00\"], \"name\": \"Titans Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Titans Pinball\", \"uk-UA\": \"Titans Pinball\", \"de-DE\": \"Titans Pinball\", \"en-US\": \"Titans Pinball\", \"pt-BR\": \"Titans Pinball\", \"es-ES\": \"Titans Pinball\", \"ar-AE\": \"Titans Pinball\", \"no-NO\": \"Titans Pinball\", \"fr-CA\": \"Titans Pinball\", \"it-IT\": \"Titans Pinball\", \"pl-PL\": \"Titans Pinball\", \"ru-RU\": \"Titans Pinball\", \"nl-NL\": \"Titans Pinball\", \"pt-PT\": \"Titans Pinball\", \"sv-SE\": \"Titans Pinball\", \"da-DK\": \"Titans Pinball\", \"tr-TR\": \"Titans Pinball\", \"fr-FR\": \"Titans Pinball\", \"en-GB\": \"Titans Pinball\", \"es-419\": \"Titans Pinball\", \"ja-JP\": \"\\u30bf\\u30a4\\u30bf\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T05:37:29.840000Z\", \"lastPlayedDateTime\": \"2023-06-21T06:17:32.900000Z\", \"playDuration\": \"PT21M4S\"}, {\"titleId\": \"CUSA18686_00\", \"name\": \"Doodle God: Evolution\", \"localizedName\": \"Doodle God: Evolution\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 235296, \"titleIds\": [\"CUSA18084_00\", \"CUSA26598_00\", \"CUSA27103_00\", \"CUSA18686_00\"], \"name\": \"Doodle God: Evolution\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Doodle God: Evolution\", \"uk-UA\": \"Doodle God: Evolution\", \"de-DE\": \"Doodle God: Evolution\", \"en-US\": \"Doodle God: Evolution\", \"pt-BR\": \"Doodle God: Evolution\", \"es-ES\": \"Doodle God: Evolution\", \"ar-AE\": \"Doodle God: Evolution\", \"no-NO\": \"Doodle God: Evolution\", \"fr-CA\": \"Doodle God: Evolution\", \"it-IT\": \"Doodle God: Evolution\", \"pl-PL\": \"Doodle God: Evolution\", \"ru-RU\": \"Doodle God: Evolution\", \"nl-NL\": \"Doodle God: Evolution\", \"pt-PT\": \"Doodle God: Evolution\", \"sv-SE\": \"Doodle God: Evolution\", \"da-DK\": \"Doodle God: Evolution\", \"tr-TR\": \"Doodle God: Evolution\", \"fr-FR\": \"Doodle God: Evolution\", \"en-GB\": \"Doodle God: Evolution\", \"es-419\": \"Doodle God: Evolution\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:42:59.130000Z\", \"lastPlayedDateTime\": \"2023-06-21T04:43:25.740000Z\", \"playDuration\": \"PT5H50M9S\"}, {\"titleId\": \"CUSA29604_00\", \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"localizedName\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 6, \"concept\": {\"id\": 10003498, \"titleIds\": [\"CUSA29604_00\"], \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"uk-UA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"de-DE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-US\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-BR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-ES\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ar-AE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"no-NO\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-CA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"it-IT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pl-PL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ru-RU\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"nl-NL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-PT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"sv-SE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"da-DK\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"tr-TR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-FR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-GB\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-419\": \"Neptunia x SENRAN KAGURA: Ninja Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T11:03:14.970000Z\", \"lastPlayedDateTime\": \"2023-06-21T03:03:29.130000Z\", \"playDuration\": \"PT14H18M33S\"}, {\"titleId\": \"PPSA15070_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:57:56.270000Z\", \"lastPlayedDateTime\": \"2023-06-20T20:02:30.840000Z\", \"playDuration\": \"PT4M21S\"}, {\"titleId\": \"PPSA15071_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:55:09.970000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:57:53.980000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"CUSA42067_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:52:20.780000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:55:07.560000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA42069_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:29:56.250000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:52:19.010000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA42527_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T15:27:09.620000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:48:40.430000Z\", \"playDuration\": \"PT2H23M46S\"}, {\"titleId\": \"CUSA31464_00\", \"name\": \"ExitMan Deluxe\", \"localizedName\": \"ExitMan Deluxe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004176, \"titleIds\": [\"CUSA31464_00\", \"CUSA31465_00\", \"CUSA31463_00\", \"CUSA31462_00\"], \"name\": \"ExitMan Deluxe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ExitMan Deluxe\", \"uk-UA\": \"ExitMan Deluxe\", \"de-DE\": \"ExitMan Deluxe\", \"en-US\": \"ExitMan Deluxe\", \"ko-KR\": \"ExitMan Deluxe\", \"pt-BR\": \"ExitMan Deluxe\", \"es-ES\": \"ExitMan Deluxe\", \"ar-AE\": \"ExitMan Deluxe\", \"no-NO\": \"ExitMan Deluxe\", \"fr-CA\": \"ExitMan Deluxe\", \"it-IT\": \"ExitMan Deluxe\", \"pl-PL\": \"ExitMan Deluxe\", \"ru-RU\": \"ExitMan Deluxe\", \"zh-Hans\": \"ExitMan Deluxe\", \"nl-NL\": \"ExitMan Deluxe\", \"pt-PT\": \"ExitMan Deluxe\", \"zh-Hant\": \"ExitMan Deluxe\", \"sv-SE\": \"ExitMan Deluxe\", \"da-DK\": \"ExitMan Deluxe\", \"tr-TR\": \"ExitMan Deluxe\", \"fr-FR\": \"ExitMan Deluxe\", \"en-GB\": \"ExitMan Deluxe\", \"es-419\": \"ExitMan Deluxe\", \"ja-JP\": \"ExitMan Deluxe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T17:01:19.220000Z\", \"lastPlayedDateTime\": \"2023-06-20T18:56:21.880000Z\", \"playDuration\": \"PT1H53M47S\"}, {\"titleId\": \"CUSA33496_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:31:54.680000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:25:58.210000Z\", \"playDuration\": \"PT1H33M58S\"}, {\"titleId\": \"CUSA33495_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:10:24.360000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:19:49.710000Z\", \"playDuration\": \"PT1H49M56S\"}, {\"titleId\": \"CUSA38002_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:25:32.270000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:28:46.700000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA43835_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:20:33.170000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:25:30.100000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"CUSA42211_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:18:03.890000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:19:08.810000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA42212_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:16:32.470000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:18:02.510000Z\", \"playDuration\": \"PT1M23S\"}, {\"titleId\": \"CUSA43806_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:06:53.640000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:14:53.200000Z\", \"playDuration\": \"PT7M40S\"}, {\"titleId\": \"CUSA43737_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:03:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:06:50.510000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35901_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:56:43.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:02:15.670000Z\", \"playDuration\": \"PT3M46S\"}, {\"titleId\": \"CUSA35900_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:51:28.810000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:56:41.330000Z\", \"playDuration\": \"PT4M55S\"}, {\"titleId\": \"CUSA35902_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:47:41.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:51:20.210000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"CUSA35899_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:35:47.380000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:46:56.550000Z\", \"playDuration\": \"PT10M44S\"}, {\"titleId\": \"PPSA12391_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:22:37.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:35:24.690000Z\", \"playDuration\": \"PT11M6S\"}, {\"titleId\": \"PPSA12392_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:13:39.510000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:22:33.230000Z\", \"playDuration\": \"PT8M23S\"}, {\"titleId\": \"PPSA12393_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:03:57.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:13:37.440000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"PPSA12390_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T06:42:45.820000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:03:55.910000Z\", \"playDuration\": \"PT18M56S\"}, {\"titleId\": \"PPSA08305_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 23, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T01:05:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:37:36.350000Z\", \"playDuration\": \"PT12H22M36S\"}, {\"titleId\": \"PPSA08304_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 22, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T22:18:51.680000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:06:06.020000Z\", \"playDuration\": \"PT12H38M59S\"}, {\"titleId\": \"CUSA34367_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T12:12:18.050000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:43:30.960000Z\", \"playDuration\": \"PT16H18M49S\"}, {\"titleId\": \"CUSA37712_00\", \"name\": \"Deep Ones\", \"localizedName\": \"Deep Ones\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 231072, \"titleIds\": [\"CUSA18978_00\", \"PCSB01212_00\", \"CUSA14737_00\", \"CUSA10838_00\", \"CUSA14703_00\", \"CUSA10821_00\", \"CUSA37712_00\"], \"name\": \"Deep Ones\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Deep Ones\", \"uk-UA\": \"Deep Ones\", \"de-DE\": \"Deep Ones\", \"en-US\": \"Deep Ones\", \"ko-KR\": \"Deep Ones\", \"pt-BR\": \"Deep Ones\", \"es-ES\": \"Deep Ones\", \"ar-AE\": \"Deep Ones\", \"no-NO\": \"Deep Ones\", \"fr-CA\": \"Deep Ones\", \"it-IT\": \"Deep Ones\", \"pl-PL\": \"Deep Ones\", \"ru-RU\": \"Deep Ones\", \"zh-Hans\": \"Deep Ones\", \"nl-NL\": \"Deep Ones\", \"pt-PT\": \"Deep Ones\", \"zh-Hant\": \"Deep Ones\", \"sv-SE\": \"Deep Ones\", \"da-DK\": \"Deep Ones\", \"tr-TR\": \"Deep Ones\", \"fr-FR\": \"Deep Ones\", \"en-GB\": \"Deep Ones\", \"es-419\": \"Deep Ones\", \"ja-JP\": \"Deep Ones\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T06:24:03.750000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:11:35.620000Z\", \"playDuration\": \"PT2H33M50S\"}, {\"titleId\": \"CUSA25037_00\", \"name\": \"Persian Nights 2: Moonlight Veil\", \"localizedName\": \"Persian Nights 2: Moonlight Veil\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001680, \"titleIds\": [\"CUSA25038_00\", \"CUSA25037_00\"], \"name\": \"Persian Nights 2: Moonlight Veil\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Persian Nights 2: Moonlight Veil\", \"uk-UA\": \"Persian Nights 2: Moonlight Veil\", \"de-DE\": \"Persian Nights 2: Moonlight Veil\", \"en-US\": \"Persian Nights 2: Moonlight Veil\", \"pt-BR\": \"Persian Nights 2: Moonlight Veil\", \"es-ES\": \"Persian Nights 2: Moonlight Veil\", \"ar-AE\": \"Persian Nights 2: Moonlight Veil\", \"no-NO\": \"Persian Nights 2: Moonlight Veil\", \"fr-CA\": \"Persian Nights 2: Moonlight Veil\", \"it-IT\": \"Persian Nights 2: Moonlight Veil\", \"pl-PL\": \"Persian Nights 2: Moonlight Veil\", \"ru-RU\": \"Persian Nights 2: Moonlight Veil\", \"nl-NL\": \"Persian Nights 2: Moonlight Veil\", \"pt-PT\": \"Persian Nights 2: Moonlight Veil\", \"sv-SE\": \"Persian Nights 2: Moonlight Veil\", \"da-DK\": \"Persian Nights 2: Moonlight Veil\", \"tr-TR\": \"Persian Nights 2: Moonlight Veil\", \"fr-FR\": \"Persian Nights 2: Moonlight Veil\", \"en-GB\": \"Persian Nights 2: Moonlight Veil\", \"es-419\": \"Persian Nights 2: Moonlight Veil\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T02:14:17.830000Z\", \"lastPlayedDateTime\": \"2023-06-18T06:23:00.120000Z\", \"playDuration\": \"PT2H21M46S\"}, {\"titleId\": \"CUSA30539_00\", \"name\": \"Inspector Waffles\", \"localizedName\": \"Inspector Waffles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003854, \"titleIds\": [\"CUSA30540_00\", \"CUSA30539_00\"], \"name\": \"Inspector Waffles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inspector Waffles\", \"uk-UA\": \"Inspector Waffles\", \"de-DE\": \"Inspector Waffles\", \"en-US\": \"Inspector Waffles\", \"pt-BR\": \"Inspector Waffles\", \"es-ES\": \"Inspector Waffles\", \"ar-AE\": \"Inspector Waffles\", \"no-NO\": \"Inspector Waffles\", \"fr-CA\": \"Inspector Waffles\", \"it-IT\": \"Inspector Waffles\", \"pl-PL\": \"Inspector Waffles\", \"ru-RU\": \"Inspector Waffles\", \"nl-NL\": \"Inspector Waffles\", \"pt-PT\": \"Inspector Waffles\", \"sv-SE\": \"Inspector Waffles\", \"da-DK\": \"Inspector Waffles\", \"tr-TR\": \"Inspector Waffles\", \"fr-FR\": \"Inspector Waffles\", \"en-GB\": \"Inspector Waffles\", \"es-419\": \"Inspector Waffles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T11:58:51.560000Z\", \"lastPlayedDateTime\": \"2023-06-17T14:09:44.990000Z\", \"playDuration\": \"PT2H50S\"}, {\"titleId\": \"PPSA12406_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T08:48:37.410000Z\", \"lastPlayedDateTime\": \"2023-06-17T11:51:06.970000Z\", \"playDuration\": \"PT49M55S\"}, {\"titleId\": \"CUSA39375_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T07:41:08.680000Z\", \"lastPlayedDateTime\": \"2023-06-17T08:31:37.270000Z\", \"playDuration\": \"PT49M49S\"}, {\"titleId\": \"CUSA18793_00\", \"name\": \"MOZART'S REQUIEM\", \"localizedName\": \"MOZART'S REQUIEM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 5, \"concept\": {\"id\": 10000493, \"titleIds\": [\"CUSA28337_00\", \"CUSA18793_00\"], \"name\": \"MOZART'S REQUIEM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MOZART REQUIEM\", \"uk-UA\": \"MOZART REQUIEM\", \"de-DE\": \"MOZART REQUIEM\", \"en-US\": \"MOZART'S REQUIEM\", \"ko-KR\": \"MOZART REQUIEM\", \"pt-BR\": \"MOZART REQUIEM\", \"es-ES\": \"MOZART REQUIEM\", \"ar-AE\": \"MOZART REQUIEM\", \"no-NO\": \"MOZART REQUIEM\", \"fr-CA\": \"MOZART REQUIEM\", \"it-IT\": \"MOZART REQUIEM\", \"pl-PL\": \"MOZART REQUIEM\", \"ru-RU\": \"MOZART REQUIEM\", \"nl-NL\": \"MOZART REQUIEM\", \"pt-PT\": \"MOZART REQUIEM\", \"sv-SE\": \"MOZART REQUIEM\", \"da-DK\": \"MOZART REQUIEM\", \"tr-TR\": \"MOZART REQUIEM\", \"fr-FR\": \"MOZART REQUIEM\", \"en-GB\": \"MOZART'S REQUIEM\", \"es-419\": \"MOZART REQUIEM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T09:07:10.390000Z\", \"lastPlayedDateTime\": \"2023-06-17T07:22:51.420000Z\", \"playDuration\": \"PT1H18M49S\"}, {\"titleId\": \"CUSA32560_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T15:44:05.860000Z\", \"lastPlayedDateTime\": \"2023-06-15T17:12:58.820000Z\", \"playDuration\": \"PT1H26M26S\"}, {\"titleId\": \"CUSA32558_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:29:22.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T15:33:11.300000Z\", \"playDuration\": \"PT1H51M13S\"}, {\"titleId\": \"PPSA11423_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:11:12.130000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:12:29.620000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"PPSA11422_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:10:31.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:11:09.890000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"CUSA38204_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:07:43.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:10:29.700000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA38203_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:06:32.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:07:41.360000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA30205_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T07:11:18.460000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:06:13.540000Z\", \"playDuration\": \"PT2H10M55S\"}, {\"titleId\": \"CUSA30204_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T05:08:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-15T07:03:06.660000Z\", \"playDuration\": \"PT1H54M20S\"}, {\"titleId\": \"CUSA30203_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:46:50.900000Z\", \"lastPlayedDateTime\": \"2023-06-15T05:00:13.000000Z\", \"playDuration\": \"PT2H16M39S\"}, {\"titleId\": \"PPSA02628_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:26:18.440000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:33:21.490000Z\", \"playDuration\": \"PT7M\"}, {\"titleId\": \"CUSA26156_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:18:48.770000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:26:14.820000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA32143_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:03:49.480000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:42.740000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"PPSA06437_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:12:22.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:09.750000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA06953_00\", \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"localizedName\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004731, \"titleIds\": [\"PPSA06953_00\", \"PPSA08158_00\"], \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"uk-UA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"de-DE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-US\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-BR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-ES\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ar-AE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"no-NO\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-CA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"it-IT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pl-PL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ru-RU\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"nl-NL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-PT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"sv-SE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"da-DK\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"tr-TR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-FR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-GB\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-419\": \"Undernauts: Labyrinth of Yomi (PS5)\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T00:54:23.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:02:46.870000Z\", \"playDuration\": \"PT8M20S\"}, {\"titleId\": \"CUSA36661_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T15:05:15.090000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:53:21.020000Z\", \"playDuration\": \"PT45M46S\"}, {\"titleId\": \"CUSA36874_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:35:36.930000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:05:11.910000Z\", \"playDuration\": \"PT1H27M29S\"}, {\"titleId\": \"PPSA15455_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:04:36.300000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:13:02.310000Z\", \"playDuration\": \"PT8M13S\"}, {\"titleId\": \"PPSA15454_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:55:21.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:04:34.230000Z\", \"playDuration\": \"PT8M30S\"}, {\"titleId\": \"CUSA42452_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:40:10.050000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:48:50.360000Z\", \"playDuration\": \"PT8M37S\"}, {\"titleId\": \"CUSA42453_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:17:16.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:40:07.960000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"CUSA27347_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T10:50:08.490000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:16:26.070000Z\", \"playDuration\": \"PT1H26M13S\"}, {\"titleId\": \"CUSA27346_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:58:47.560000Z\", \"lastPlayedDateTime\": \"2023-06-14T10:50:06.460000Z\", \"playDuration\": \"PT2H48M13S\"}, {\"titleId\": \"PPSA15223_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:03:27.310000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:56:22.900000Z\", \"playDuration\": \"PT47M40S\"}, {\"titleId\": \"CUSA42228_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:55:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:03:25.170000Z\", \"playDuration\": \"PT50M2S\"}, {\"titleId\": \"PPSA15222_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:05:58.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T04:55:08.770000Z\", \"playDuration\": \"PT48M46S\"}, {\"titleId\": \"CUSA42227_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:25:16.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T02:30:10.530000Z\", \"playDuration\": \"PT1H4M39S\"}, {\"titleId\": \"CUSA43696_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:17:30.830000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:20:20.690000Z\", \"playDuration\": \"PT1M38S\"}, {\"titleId\": \"CUSA43695_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:10:42.350000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:17:29.060000Z\", \"playDuration\": \"PT3M19S\"}, {\"titleId\": \"PPSA07674_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 44, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T07:35:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:10:01.450000Z\", \"playDuration\": \"PT4H50M41S\"}, {\"titleId\": \"PPSA08122_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 40, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T02:50:45.650000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:09:21.270000Z\", \"playDuration\": \"PT5H46M16S\"}, {\"titleId\": \"PPSA07673_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 25, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T10:36:15.740000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:08:34.450000Z\", \"playDuration\": \"PT3H38M27S\"}, {\"titleId\": \"CUSA42709_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 13, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:59:55.760000Z\", \"lastPlayedDateTime\": \"2023-06-14T00:32:45.060000Z\", \"playDuration\": \"PT24H5M33S\"}, {\"titleId\": \"CUSA42710_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 14, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T14:35:36.420000Z\", \"lastPlayedDateTime\": \"2023-06-13T00:59:17.750000Z\", \"playDuration\": \"PT21H7M51S\"}, {\"titleId\": \"CUSA36020_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:53:28.970000Z\", \"lastPlayedDateTime\": \"2023-06-12T07:12:58.030000Z\", \"playDuration\": \"PT19M15S\"}, {\"titleId\": \"CUSA43834_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:48:41.810000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:52:55.070000Z\", \"playDuration\": \"PT3M8S\"}, {\"titleId\": \"CUSA43832_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:43:04.070000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:48:39.980000Z\", \"playDuration\": \"PT5M5S\"}, {\"titleId\": \"CUSA43833_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:36:56.800000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:43:02.200000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA38001_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:30:40.310000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:36:54.880000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"CUSA35676_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:24:58.440000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:29:25.570000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA35677_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:21:03.640000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:24:56.810000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA34368_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T00:51:41.470000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:38:43.520000Z\", \"playDuration\": \"PT6H23M16S\"}, {\"titleId\": \"PPSA10726_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:40:02.000000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:33:03.700000Z\", \"playDuration\": \"PT2H15M42S\"}, {\"titleId\": \"PPSA10727_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:15:11.350000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:30:07.820000Z\", \"playDuration\": \"PT1H25M6S\"}, {\"titleId\": \"CUSA37361_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T06:08:16.850000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:23:32.610000Z\", \"playDuration\": \"PT2H7M31S\"}, {\"titleId\": \"CUSA37362_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T06:36:07.760000Z\", \"lastPlayedDateTime\": \"2023-06-10T06:05:28.750000Z\", \"playDuration\": \"PT5H11S\"}, {\"titleId\": \"CUSA43227_00\", \"name\": \"Pixel Driver\", \"localizedName\": \"Pixel Driver\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008321, \"titleIds\": [\"CUSA43227_00\", \"CUSA43226_00\"], \"name\": \"Pixel Driver\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pixel Driver\", \"uk-UA\": \"Pixel Driver\", \"de-DE\": \"Pixel Driver\", \"en-US\": \"Pixel Driver\", \"ko-KR\": \"Pixel Driver\", \"pt-BR\": \"Pixel Driver\", \"es-ES\": \"Pixel Driver\", \"ar-AE\": \"Pixel Driver\", \"no-NO\": \"Pixel Driver\", \"fr-CA\": \"Pixel Driver\", \"it-IT\": \"Pixel Driver\", \"pl-PL\": \"Pixel Driver\", \"ru-RU\": \"Pixel Driver\", \"zh-Hans\": \"Pixel Driver\", \"nl-NL\": \"Pixel Driver\", \"pt-PT\": \"Pixel Driver\", \"zh-Hant\": \"Pixel Driver\", \"sv-SE\": \"Pixel Driver\", \"da-DK\": \"Pixel Driver\", \"tr-TR\": \"Pixel Driver\", \"fr-FR\": \"Pixel Driver\", \"en-GB\": \"Pixel Driver\", \"es-419\": \"Pixel Driver\", \"ja-JP\": \"Pixel Driver\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:30:50.780000Z\", \"lastPlayedDateTime\": \"2023-06-09T06:35:46.490000Z\", \"playDuration\": \"PT2H1M8S\"}, {\"titleId\": \"CUSA35875_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:28:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:30:10.410000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA35876_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:25:26.330000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:28:03.680000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35874_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:23:36.980000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:25:24.340000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA35873_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:20:35.200000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:23:35.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA16673_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:15:49.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:19:46.650000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"PPSA16672_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:11:15.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:15:47.030000Z\", \"playDuration\": \"PT4M19S\"}, {\"titleId\": \"PPSA16671_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:07:04.650000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:11:12.530000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"PPSA16670_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:02:44.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:07:01.490000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"CUSA43594_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:05:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:09:27.010000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"CUSA43593_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:01:42.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:05:29.700000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA43591_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:57:28.170000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:01:38.530000Z\", \"playDuration\": \"PT3M55S\"}, {\"titleId\": \"CUSA43592_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:52:23.040000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:57:24.200000Z\", \"playDuration\": \"PT4M49S\"}, {\"titleId\": \"PPSA12581_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:43:01.450000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:46:43.320000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"PPSA12582_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:39:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:42:59.320000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA39537_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:32:21.500000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:39:09.620000Z\", \"playDuration\": \"PT6M19S\"}, {\"titleId\": \"CUSA39538_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:28:29.320000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:32:15.930000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA23980_00\", \"name\": \"Life is Strange Remastered Collection\", \"localizedName\": \"Life is Strange Remastered Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10001187, \"titleIds\": [\"CUSA23980_00\", \"CUSA23981_00\", \"CUSA23982_00\"], \"name\": \"Life is Strange Remastered Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered Collection\", \"uk-UA\": \"Life is Strange Remastered Collection\", \"de-DE\": \"Life is Strange Remastered Collection\", \"en-US\": \"Life is Strange Remastered Collection\", \"ko-KR\": \"Life is Strange Remastered Collection\", \"pt-BR\": \"Life is Strange Remastered Collection\", \"es-ES\": \"Life is Strange Remastered Collection\", \"ar-AE\": \"\\u0645\\u062c\\u0645\\u0648\\u0639\\u0629 Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered Collection\", \"fr-CA\": \"Life is Strange Remastered Collection\", \"it-IT\": \"Life is Strange Remastered Collection\", \"pl-PL\": \"Life is Strange Remastered Collection\", \"ru-RU\": \"Life is Strange Remastered Collection\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\\u7d44\\u5408\\u5305\", \"nl-NL\": \"Life is Strange Remastered Collection\", \"pt-PT\": \"Life is Strange Remastered Collection\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u5408\\u96c6\\u5305\", \"sv-SE\": \"Life is Strange Remastered Collection\", \"da-DK\": \"Life is Strange Remastered Collection\", \"tr-TR\": \"Life is Strange Remastered Collection\", \"fr-FR\": \"Life is Strange Remastered Collection\", \"en-GB\": \"Life is Strange Remastered Collection\", \"es-419\": \"Life is Strange Remastered Collection\", \"ja-JP\": \"Life is Strange Remastered Collection\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-08T10:05:07.840000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:28:00.000000Z\", \"playDuration\": \"PT5H55M32S\"}, {\"titleId\": \"CUSA23977_00\", \"name\": \"Life is Strange Remastered\", \"localizedName\": \"Life is Strange Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001186, \"titleIds\": [\"CUSA23979_00\", \"CUSA23978_00\", \"CUSA23977_00\"], \"name\": \"Life is Strange Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered\", \"uk-UA\": \"Life is Strange Remastered\", \"de-DE\": \"Life is Strange Remastered\", \"en-US\": \"Life is Strange Remastered\", \"ko-KR\": \"Life is Strange Remastered\", \"pt-BR\": \"Life is Strange Remastered\", \"es-ES\": \"Life is Strange Remastered\", \"ar-AE\": \"Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered\", \"fr-CA\": \"Life is Strange Remastered\", \"it-IT\": \"Life is Strange Remastered\", \"pl-PL\": \"Life is Strange Remastered\", \"ru-RU\": \"Life is Strange Remastered\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\", \"nl-NL\": \"Life is Strange Remastered\", \"pt-PT\": \"Life is Strange Remastered\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u7248\", \"sv-SE\": \"Life is Strange Remastered\", \"da-DK\": \"Life is Strange Remastered\", \"tr-TR\": \"Life is Strange Remastered\", \"fr-FR\": \"Life is Strange Remastered\", \"en-GB\": \"Life is Strange Remastered\", \"es-419\": \"Life is Strange remasterizado\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-07T11:44:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-08T10:05:05.140000Z\", \"playDuration\": \"PT11H23M42S\"}, {\"titleId\": \"PPSA14306_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T16:06:41.000000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:31:25.690000Z\", \"playDuration\": \"PT24M28S\"}, {\"titleId\": \"PPSA14307_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:27:43.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:06:39.700000Z\", \"playDuration\": \"PT38M28S\"}, {\"titleId\": \"CUSA41259_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:07:45.220000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:27:41.070000Z\", \"playDuration\": \"PT19M31S\"}, {\"titleId\": \"CUSA41261_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T14:31:17.370000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:07:43.130000Z\", \"playDuration\": \"PT36M18S\"}, {\"titleId\": \"CUSA32564_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T11:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-06-06T14:31:13.680000Z\", \"playDuration\": \"PT3H21M8S\"}, {\"titleId\": \"PPSA16462_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T08:26:25.550000Z\", \"lastPlayedDateTime\": \"2023-06-06T09:14:40.230000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA37251_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T06:03:10.720000Z\", \"lastPlayedDateTime\": \"2023-06-06T08:22:10.390000Z\", \"playDuration\": \"PT2H7M33S\"}, {\"titleId\": \"CUSA34534_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T04:10:20.640000Z\", \"lastPlayedDateTime\": \"2023-06-06T06:00:19.880000Z\", \"playDuration\": \"PT1H49M52S\"}, {\"titleId\": \"CUSA34533_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T00:49:32.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T02:47:52.100000Z\", \"playDuration\": \"PT1H58M7S\"}, {\"titleId\": \"CUSA34532_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-05T14:09:23.830000Z\", \"lastPlayedDateTime\": \"2023-06-05T16:14:56.160000Z\", \"playDuration\": \"PT1H54M37S\"}, {\"titleId\": \"PPSA13255_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T12:50:24.650000Z\", \"lastPlayedDateTime\": \"2023-06-05T14:06:46.360000Z\", \"playDuration\": \"PT22H23M12S\"}, {\"titleId\": \"CUSA40231_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:51:23.490000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:14:45.790000Z\", \"playDuration\": \"PT33H41M44S\"}, {\"titleId\": \"CUSA15500_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T04:04:01.980000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:07:26.700000Z\", \"playDuration\": \"PT6H42M7S\"}, {\"titleId\": \"CUSA18580_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:43:51.930000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:58:26.990000Z\", \"playDuration\": \"PT3H49M17S\"}, {\"titleId\": \"CUSA15575_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T11:11:57.590000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:49:17.320000Z\", \"playDuration\": \"PT3H45M36S\"}, {\"titleId\": \"CUSA26987_00\", \"name\": \"What The Dub?!\", \"localizedName\": \"What The Dub?!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002481, \"titleIds\": [\"CUSA26985_00\", \"CUSA26987_00\"], \"name\": \"What The Dub?!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"What The Dub?!\", \"uk-UA\": \"What The Dub?!\", \"de-DE\": \"What The Dub?!\", \"en-US\": \"What The Dub?!\", \"pt-BR\": \"What The Dub?!\", \"es-ES\": \"What The Dub?!\", \"ar-AE\": \"What The Dub?!\", \"no-NO\": \"What The Dub?!\", \"fr-CA\": \"What The Dub?!\", \"it-IT\": \"What The Dub?!\", \"pl-PL\": \"What The Dub?!\", \"ru-RU\": \"What The Dub?!\", \"nl-NL\": \"What The Dub?!\", \"pt-PT\": \"What The Dub?!\", \"sv-SE\": \"What The Dub?!\", \"da-DK\": \"What The Dub?!\", \"tr-TR\": \"What The Dub?!\", \"fr-FR\": \"What The Dub?!\", \"en-GB\": \"What The Dub?!\", \"es-419\": \"What The Dub?!\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:14:48.960000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:16:41.360000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA23876_00\", \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"localizedName\": \"The Secret Order: Return to the Buried Kingdom\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001150, \"titleIds\": [\"CUSA23877_00\", \"CUSA23876_00\"], \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Secret Order: Return to the Buried Kingdom\", \"uk-UA\": \"The Secret Order: Return to the Buried Kingdom\", \"de-DE\": \"The Secret Order: Return to the Buried Kingdom\", \"en-US\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-BR\": \"The Secret Order: Return to the Buried Kingdom\", \"es-ES\": \"The Secret Order: Return to the Buried Kingdom\", \"ar-AE\": \"The Secret Order: Return to the Buried Kingdom\", \"no-NO\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-CA\": \"The Secret Order: Return to the Buried Kingdom\", \"it-IT\": \"The Secret Order: Return to the Buried Kingdom\", \"pl-PL\": \"The Secret Order: Return to the Buried Kingdom\", \"ru-RU\": \"The Secret Order: Return to the Buried Kingdom\", \"nl-NL\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-PT\": \"The Secret Order: Return to the Buried Kingdom\", \"sv-SE\": \"The Secret Order: Return to the Buried Kingdom\", \"da-DK\": \"The Secret Order: Return to the Buried Kingdom\", \"tr-TR\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-FR\": \"The Secret Order: Return to the Buried Kingdom\", \"en-GB\": \"The Secret Order: Return to the Buried Kingdom\", \"es-419\": \"The Secret Order: Return to the Buried Kingdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:09:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:13:47.740000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14971_00\", \"name\": \"Ultimate Runner\", \"localizedName\": \"Ultimate Runner\", \"imageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231907, \"titleIds\": [\"PPSA14972_00\", \"CUSA13147_00\", \"PPSA14971_00\", \"CUSA11645_00\"], \"name\": \"Ultimate Runner\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultimate Runner\", \"uk-UA\": \"Ultimate Runner\", \"de-DE\": \"Ultimate Runner\", \"en-US\": \"Ultimate Runner\", \"pt-BR\": \"Ultimate Runner\", \"es-ES\": \"Ultimate Runner\", \"ar-AE\": \"Ultimate Runner\", \"no-NO\": \"Ultimate Runner\", \"fr-CA\": \"Ultimate Runner\", \"it-IT\": \"Ultimate Runner\", \"pl-PL\": \"Ultimate Runner\", \"ru-RU\": \"Ultimate Runner\", \"nl-NL\": \"Ultimate Runner\", \"pt-PT\": \"Ultimate Runner\", \"sv-SE\": \"Ultimate Runner\", \"da-DK\": \"Ultimate Runner\", \"tr-TR\": \"Ultimate Runner\", \"fr-FR\": \"Ultimate Runner\", \"en-GB\": \"Ultimate Runner\", \"es-419\": \"Ultimate Runner\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:05:15.370000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:08:13.960000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"PPSA08618_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:26:44.290000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:04:21.880000Z\", \"playDuration\": \"PT36M54S\"}, {\"titleId\": \"CUSA34761_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:21:19.030000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:26:39.360000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"PPSA04571_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:18:53.000000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:20:01.250000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA29378_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:16:20.530000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:18:51.520000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA16354_00\", \"name\": \"Darkestville Castle\", \"localizedName\": \"Darkestville Castle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234403, \"titleIds\": [\"CUSA16354_00\", \"CUSA16176_00\", \"CUSA20228_00\", \"CUSA20190_00\"], \"name\": \"Darkestville Castle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Darkestville Castle\", \"uk-UA\": \"Darkestville Castle\", \"de-DE\": \"Darkestville Castle\", \"en-US\": \"Darkestville Castle\", \"pt-BR\": \"Darkestville Castle\", \"es-ES\": \"Darkestville Castle\", \"ar-AE\": \"Darkestville Castle\", \"no-NO\": \"Darkestville Castle\", \"fr-CA\": \"Darkestville Castle\", \"it-IT\": \"Darkestville Castle\", \"pl-PL\": \"Darkestville Castle\", \"ru-RU\": \"Darkestville Castle\", \"nl-NL\": \"Darkestville Castle\", \"pt-PT\": \"Darkestville Castle\", \"sv-SE\": \"Darkestville Castle\", \"da-DK\": \"Darkestville Castle\", \"tr-TR\": \"Darkestville Castle\", \"fr-FR\": \"Darkestville Castle\", \"en-GB\": \"Darkestville Castle\", \"es-419\": \"Darkestville Castle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:10:57.830000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:14:39.130000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA25993_00\", \"name\": \"Demon Hunter: Revelation\", \"localizedName\": \"Demon Hunter: Revelation\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002067, \"titleIds\": [\"CUSA25993_00\", \"CUSA25994_00\"], \"name\": \"Demon Hunter: Revelation\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Revelation\", \"uk-UA\": \"Demon Hunter: Revelation\", \"de-DE\": \"Demon Hunter: Revelation\", \"en-US\": \"Demon Hunter: Revelation\", \"pt-BR\": \"Demon Hunter: Revelation\", \"es-ES\": \"Demon Hunter: Revelation\", \"ar-AE\": \"Demon Hunter: Revelation\", \"no-NO\": \"Demon Hunter: Revelation\", \"fr-CA\": \"Demon Hunter: Revelation\", \"it-IT\": \"Demon Hunter: Revelation\", \"pl-PL\": \"Demon Hunter: Revelation\", \"ru-RU\": \"Demon Hunter: Revelation\", \"nl-NL\": \"Demon Hunter: Revelation\", \"pt-PT\": \"Demon Hunter: Revelation\", \"sv-SE\": \"Demon Hunter: Revelation\", \"da-DK\": \"Demon Hunter: Revelation\", \"tr-TR\": \"Demon Hunter: Revelation\", \"fr-FR\": \"Demon Hunter: Revelation\", \"en-GB\": \"Demon Hunter: Revelation\", \"es-419\": \"Demon Hunter: Revelation\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:06:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:10:12.590000Z\", \"playDuration\": \"PT2M41S\"}, {\"titleId\": \"PPSA06378_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:04:08.440000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:05:44.590000Z\", \"playDuration\": \"PT57S\"}, {\"titleId\": \"CUSA32047_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:01:22.510000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:04:05.440000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA05135_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:59:04.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:00:21.310000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA30209_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T00:55:41.490000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:59:01.760000Z\", \"playDuration\": \"PT5M16S\"}, {\"titleId\": \"PPSA09743_00\", \"name\": \"Vegas Infinite\", \"localizedName\": \"Vegas Infinite\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005964, \"titleIds\": [\"PPSA09743_00\"], \"name\": \"Vegas Infinite\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/0ba7f5a3e7db3e7243a158eeb115499546f052fd727a271d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/c595fdca60b54d1d516ad3b9dc4b14887a2bf2a913f7d247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0917/46dfcf4c65f81a5771750a4e8c71d0d1cf03be8a0b4f1e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SPORTS\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Infinite\", \"uk-UA\": \"Vegas Infinite\", \"de-DE\": \"Vegas Infinite\", \"en-US\": \"Vegas Infinite\", \"ko-KR\": \"Vegas Infinite\", \"pt-BR\": \"Vegas Infinite\", \"es-ES\": \"Vegas Infinite\", \"ar-AE\": \"Vegas Infinite\", \"no-NO\": \"Vegas Infinite\", \"fr-CA\": \"Vegas Infinite\", \"it-IT\": \"Vegas Infinite\", \"pl-PL\": \"Vegas Infinite\", \"ru-RU\": \"Vegas Infinite\", \"zh-Hans\": \"Vegas Infinite\", \"nl-NL\": \"Vegas Infinite\", \"pt-PT\": \"Vegas Infinite\", \"zh-Hant\": \"Vegas Infinite\", \"sv-SE\": \"Vegas Infinite\", \"da-DK\": \"Vegas Infinite\", \"tr-TR\": \"Vegas Infinite\", \"fr-FR\": \"Vegas Infinite\", \"en-GB\": \"Vegas Infinite\", \"es-419\": \"Vegas Infinite\", \"ja-JP\": \"Vegas Infinite\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/0ba7f5a3e7db3e7243a158eeb115499546f052fd727a271d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/c595fdca60b54d1d516ad3b9dc4b14887a2bf2a913f7d247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0917/46dfcf4c65f81a5771750a4e8c71d0d1cf03be8a0b4f1e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:50:36.630000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:52:47.280000Z\", \"playDuration\": \"PT2M7S\"}, {\"titleId\": \"PPSA15827_00\", \"name\": \"Cave Digger: Riches\", \"localizedName\": \"Cave Digger: Riches\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 232984, \"titleIds\": [\"CUSA20112_00\", \"CUSA14289_00\", \"CUSA14068_00\", \"PPSA15828_00\", \"PPSA15827_00\", \"CUSA20416_00\"], \"name\": \"Cave Digger: Riches\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cave Digger: Riches\", \"uk-UA\": \"Cave Digger: Riches\", \"de-DE\": \"Cave Digger: Riches\", \"en-US\": \"Cave Digger: Riches\", \"ko-KR\": \"Cave Digger: Riches\", \"pt-BR\": \"Cave Digger: Riches\", \"es-ES\": \"Cave Digger: Riches\", \"ar-AE\": \"Cave Digger: Riches\", \"no-NO\": \"Cave Digger: Riches\", \"fr-CA\": \"Cave Digger: Riches\", \"it-IT\": \"Cave Digger: Riches\", \"pl-PL\": \"Cave Digger: Riches\", \"ru-RU\": \"Cave Digger: Riches\", \"zh-Hans\": \"Cave Digger: Riches\", \"nl-NL\": \"Cave Digger: Riches\", \"pt-PT\": \"Cave Digger: Riches\", \"zh-Hant\": \"Cave Digger: Riches\", \"sv-SE\": \"Cave Digger: Riches\", \"da-DK\": \"Cave Digger: Riches\", \"tr-TR\": \"Cave Digger: Riches\", \"fr-FR\": \"Cave Digger: Riches\", \"en-GB\": \"Cave Digger: Riches\", \"es-419\": \"Cave Digger: Riches\", \"ja-JP\": \"Cave Digger: Riches\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:39:31.190000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:49:50.720000Z\", \"playDuration\": \"PT1M52S\"}, {\"titleId\": \"CUSA18462_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:13:52.380000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:15:44.850000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA19041_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-10-17T12:21:49.060000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:13:49.850000Z\", \"playDuration\": \"PT2M35S\"}, {\"titleId\": \"PPSA15293_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T02:25:11.280000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:01:09.870000Z\", \"playDuration\": \"PT35M38S\"}, {\"titleId\": \"CUSA42289_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:46:23.120000Z\", \"lastPlayedDateTime\": \"2023-06-04T02:25:09.210000Z\", \"playDuration\": \"PT38M10S\"}, {\"titleId\": \"PPSA10831_00\", \"name\": \"Mothmen 1966\", \"localizedName\": \"Mothmen 1966\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005010, \"titleIds\": [\"PPSA10830_00\", \"PPSA10831_00\", \"CUSA33546_00\", \"PPSA10829_00\", \"CUSA33544_00\", \"CUSA33545_00\"], \"name\": \"Mothmen 1966\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothmen 1966\", \"uk-UA\": \"Mothmen 1966\", \"de-DE\": \"Mothmen 1966\", \"en-US\": \"Mothmen 1966\", \"ko-KR\": \"Mothmen 1966\", \"pt-BR\": \"Mothmen 1966\", \"es-ES\": \"Mothmen 1966\", \"ar-AE\": \"Mothmen 1966\", \"no-NO\": \"Mothmen 1966\", \"fr-CA\": \"Mothmen 1966\", \"it-IT\": \"Mothmen 1966\", \"pl-PL\": \"Mothmen 1966\", \"ru-RU\": \"Mothmen 1966\", \"zh-Hans\": \"\\u5929\\u86fe\\u4eba1966\", \"nl-NL\": \"Mothmen 1966\", \"pt-PT\": \"Mothmen 1966\", \"zh-Hant\": \"\\u5929\\u86fe\\u4eba1966\", \"sv-SE\": \"Mothmen 1966\", \"da-DK\": \"Mothmen 1966\", \"tr-TR\": \"Mothmen 1966\", \"fr-FR\": \"Mothmen 1966\", \"en-GB\": \"Mothmen 1966\", \"es-419\": \"Mothmen 1966\", \"ja-JP\": \"\\u30e2\\u30b9\\u30e1\\u30f3 1966\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:08:10.410000Z\", \"lastPlayedDateTime\": \"2023-06-02T13:49:25.320000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"CUSA42510_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:52:20.730000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:57:57.540000Z\", \"playDuration\": \"PT4M30S\"}, {\"titleId\": \"CUSA42509_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:41:20.290000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:52:18.750000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"PPSA16464_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:55:48.350000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:08:54.840000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA43387_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:00:37.990000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:05:36.440000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"CUSA43386_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:51:47.960000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:54:55.800000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43385_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:47:21.670000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:51:43.120000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"PPSA16463_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:41:03.440000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:47:18.230000Z\", \"playDuration\": \"PT4M39S\"}, {\"titleId\": \"PPSA16664_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:22:01.040000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:40:42.290000Z\", \"playDuration\": \"PT18M30S\"}, {\"titleId\": \"PPSA07591_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T15:06:00.150000Z\", \"lastPlayedDateTime\": \"2023-06-01T16:08:14.100000Z\", \"playDuration\": \"PT1H2M7S\"}, {\"titleId\": \"CUSA29220_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T10:37:33.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T14:55:20.110000Z\", \"playDuration\": \"PT1H29M50S\"}, {\"titleId\": \"PPSA12237_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:55:11.390000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:57:31.500000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA39163_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:51:35.220000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:54:03.910000Z\", \"playDuration\": \"PT2M24S\"}, {\"titleId\": \"PPSA11419_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:22:56.790000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:28:37.150000Z\", \"playDuration\": \"PT5M36S\"}, {\"titleId\": \"PPSA11418_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:19:35.380000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:22:54.640000Z\", \"playDuration\": \"PT3M12S\"}, {\"titleId\": \"CUSA38188_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:16:32.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:19:33.330000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA38187_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:12:36.340000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:16:30.430000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA14143_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:53:36.000000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:12:18.230000Z\", \"playDuration\": \"PT18M31S\"}, {\"titleId\": \"PPSA12240_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:47:17.570000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:49:37.300000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"PPSA12239_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:44:51.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:47:15.430000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA39165_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:41:40.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:44:49.580000Z\", \"playDuration\": \"PT1M49S\"}, {\"titleId\": \"CUSA39166_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:39:35.070000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:41:38.560000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"CUSA39164_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:35:31.610000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:39:33.120000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"PPSA04828_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T14:43:41.510000Z\", \"lastPlayedDateTime\": \"2023-05-31T16:18:11.010000Z\", \"playDuration\": \"PT1H34M4S\"}, {\"titleId\": \"CUSA29772_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T07:11:48.340000Z\", \"lastPlayedDateTime\": \"2023-05-31T14:43:38.670000Z\", \"playDuration\": \"PT3H59M3S\"}, {\"titleId\": \"PPSA13888_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T08:51:41.490000Z\", \"lastPlayedDateTime\": \"2023-05-31T06:54:55.860000Z\", \"playDuration\": \"PT2H40M16S\"}, {\"titleId\": \"CUSA40877_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T06:07:20.690000Z\", \"lastPlayedDateTime\": \"2023-05-31T05:42:54.500000Z\", \"playDuration\": \"PT4H18M57S\"}, {\"titleId\": \"PPSA09803_00\", \"name\": \"GRIS\", \"localizedName\": \"GRIS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 234650, \"titleIds\": [\"CUSA16703_00\", \"PPSA09803_00\", \"PPSA09804_00\", \"CUSA16694_00\"], \"name\": \"GRIS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GRIS\", \"uk-UA\": \"GRIS\", \"de-DE\": \"GRIS\", \"en-US\": \"GRIS\", \"ko-KR\": \"GRIS\", \"pt-BR\": \"GRIS\", \"es-ES\": \"GRIS\", \"ar-AE\": \"GRIS\", \"no-NO\": \"GRIS\", \"fr-CA\": \"GRIS\", \"it-IT\": \"GRIS\", \"pl-PL\": \"GRIS\", \"ru-RU\": \"GRIS\", \"zh-Hans\": \"GRIS\", \"nl-NL\": \"GRIS\", \"pt-PT\": \"GRIS\", \"zh-Hant\": \"GRIS\", \"sv-SE\": \"GRIS\", \"da-DK\": \"GRIS\", \"tr-TR\": \"GRIS\", \"fr-FR\": \"GRIS\", \"en-GB\": \"GRIS\", \"es-419\": \"GRIS\", \"ja-JP\": \"GRIS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T14:11:41.200000Z\", \"lastPlayedDateTime\": \"2023-05-31T02:26:13.920000Z\", \"playDuration\": \"PT4H39M27S\"}, {\"titleId\": \"PPSA13706_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T04:28:05.650000Z\", \"lastPlayedDateTime\": \"2023-05-30T06:01:27.300000Z\", \"playDuration\": \"PT1H33M2S\"}, {\"titleId\": \"PPSA13707_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T02:02:06.360000Z\", \"lastPlayedDateTime\": \"2023-05-30T04:28:03.500000Z\", \"playDuration\": \"PT2H22M37S\"}, {\"titleId\": \"CUSA40645_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T14:25:07.090000Z\", \"lastPlayedDateTime\": \"2023-05-29T17:09:44.130000Z\", \"playDuration\": \"PT2H40M26S\"}, {\"titleId\": \"CUSA40644_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T10:42:33.260000Z\", \"lastPlayedDateTime\": \"2023-05-29T14:25:04.820000Z\", \"playDuration\": \"PT3H30M52S\"}, {\"titleId\": \"CUSA31152_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 8, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T16:29:06.390000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:18:33.240000Z\", \"playDuration\": \"PT31M28S\"}, {\"titleId\": \"PPSA05723_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 20, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T12:19:06.210000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:14:45.890000Z\", \"playDuration\": \"PT15H48M22S\"}, {\"titleId\": \"CUSA43588_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T08:06:20.750000Z\", \"lastPlayedDateTime\": \"2023-05-29T09:14:06.140000Z\", \"playDuration\": \"PT1H7M40S\"}, {\"titleId\": \"CUSA43587_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T06:18:45.120000Z\", \"lastPlayedDateTime\": \"2023-05-29T08:06:19.320000Z\", \"playDuration\": \"PT1H44M40S\"}, {\"titleId\": \"PPSA14132_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:58:02.560000Z\", \"lastPlayedDateTime\": \"2023-05-28T15:11:49.740000Z\", \"playDuration\": \"PT43M46S\"}, {\"titleId\": \"PPSA14133_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T09:06:33.520000Z\", \"lastPlayedDateTime\": \"2023-05-28T14:28:13.090000Z\", \"playDuration\": \"PT49M22S\"}, {\"titleId\": \"CUSA41116_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:57:13.310000Z\", \"lastPlayedDateTime\": \"2023-05-28T13:15:08.420000Z\", \"playDuration\": \"PT1H13S\"}, {\"titleId\": \"CUSA41117_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-05-28T12:11:19.930000Z\", \"playDuration\": \"PT1H27M53S\"}, {\"titleId\": \"CUSA40170_00\", \"name\": \"Fuyukara Kururu\", \"localizedName\": \"Fuyukara Kururu\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007105, \"titleIds\": [\"CUSA40170_00\", \"CUSA40171_00\"], \"name\": \"Fuyukara Kururu\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Fuyukara Kururu\", \"en-GB\": \"Fuyukara Kururu\", \"ja-JP\": \"\\u3075\\u3086\\u304b\\u3089\\u3001\\u304f\\u308b\\u308b\\u3002\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T10:14:28.710000Z\", \"lastPlayedDateTime\": \"2023-05-28T10:23:27.640000Z\", \"playDuration\": \"PT8M55S\"}, {\"titleId\": \"CUSA26390_00\", \"name\": \"Maze\", \"localizedName\": \"Maze\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 235150, \"titleIds\": [\"CUSA26390_00\", \"CUSA17893_00\", \"CUSA17969_00\"], \"name\": \"Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Maze\", \"uk-UA\": \"Maze\", \"de-DE\": \"Maze\", \"en-US\": \"Maze\", \"pt-BR\": \"Maze\", \"es-ES\": \"Maze\", \"ar-AE\": \"Maze\", \"no-NO\": \"Maze\", \"fr-CA\": \"Maze\", \"it-IT\": \"Maze\", \"pl-PL\": \"Maze\", \"ru-RU\": \"Maze\", \"nl-NL\": \"Maze\", \"pt-PT\": \"Maze\", \"sv-SE\": \"Maze\", \"da-DK\": \"Maze\", \"tr-TR\": \"Maze\", \"fr-FR\": \"Maze\", \"en-GB\": \"Maze\", \"es-419\": \"Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:05:19.390000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:46:50.010000Z\", \"playDuration\": \"PT41M18S\"}, {\"titleId\": \"PPSA04256_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:55:07.540000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:02:45.190000Z\", \"playDuration\": \"PT7M22S\"}, {\"titleId\": \"PPSA04247_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:43:38.620000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:55:05.410000Z\", \"playDuration\": \"PT11M11S\"}, {\"titleId\": \"CUSA28115_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:36:00.220000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:43:36.280000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA28116_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:09:47.550000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:35:57.670000Z\", \"playDuration\": \"PT19M21S\"}, {\"titleId\": \"PPSA08128_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T05:27:11.210000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:05:03.000000Z\", \"playDuration\": \"PT1H16M5S\"}], \"nextOffset\": 800, \"previousOffset\": 599, \"totalItemCount\": 13588}"
+ "string": "{\"titles\": [{\"titleId\": \"CUSA35888_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:22:20.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:28:23.530000Z\", \"playDuration\": \"PT5M4S\"}, {\"titleId\": \"CUSA35887_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:18:24.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:22:17.820000Z\", \"playDuration\": \"PT3M42S\"}, {\"titleId\": \"CUSA35890_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:13:32.170000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:18:22.250000Z\", \"playDuration\": \"PT4M11S\"}, {\"titleId\": \"PPSA11350_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:01:46.560000Z\", \"lastPlayedDateTime\": \"2023-06-25T10:50:55.110000Z\", \"playDuration\": \"PT53S\"}, {\"titleId\": \"PPSA11349_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:00:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:01:43.910000Z\", \"playDuration\": \"PT48S\"}, {\"titleId\": \"PPSA16939_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:57:14.440000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:00:46.320000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA16942_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:53:50.870000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:57:11.560000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA16940_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:49:17.750000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:53:47.970000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA43807_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:27:04.350000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:49:14.300000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"PPSA08030_00\", \"name\": \"FINAL FANTASY XVI\", \"localizedName\": \"FINAL FANTASY XVI\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 10, \"concept\": {\"id\": 10002100, \"titleIds\": [\"PPSA08030_00\", \"PPSA13801_00\", \"PPSA13802_00\", \"PPSA13803_00\", \"PPSA13804_00\", \"PPSA10666_00\", \"PPSA10664_00\", \"PPSA10665_00\"], \"name\": \"FINAL FANTASY XVI\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"FINAL FANTASY XVI\", \"uk-UA\": \"FINAL FANTASY XVI\", \"de-DE\": \"FINAL FANTASY XVI\", \"en-US\": \"FINAL FANTASY XVI\", \"ko-KR\": \"FINAL FANTASY XVI\", \"pt-BR\": \"FINAL FANTASY XVI\", \"es-ES\": \"FINAL FANTASY XVI\", \"ar-AE\": \"FINAL FANTASY XVI\", \"no-NO\": \"FINAL FANTASY XVI\", \"fr-CA\": \"FINAL FANTASY XVI\", \"it-IT\": \"FINAL FANTASY XVI\", \"pl-PL\": \"FINAL FANTASY XVI\", \"ru-RU\": \"FINAL FANTASY XVI\", \"zh-Hans\": \"\\u6700\\u7ec8\\u5e7b\\u60f3 16\", \"nl-NL\": \"FINAL FANTASY XVI\", \"pt-PT\": \"FINAL FANTASY XVI\", \"zh-Hant\": \"FINAL FANTASY XVI\", \"sv-SE\": \"FINAL FANTASY XVI\", \"da-DK\": \"FINAL FANTASY XVI\", \"tr-TR\": \"FINAL FANTASY XVI\", \"fr-FR\": \"FINAL FANTASY XVI\", \"en-GB\": \"FINAL FANTASY XVI\", \"es-419\": \"FINAL FANTASY XVI\", \"ja-JP\": \"FINAL FANTASY XVI\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T05:05:01.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:26:58.710000Z\", \"playDuration\": \"PT45H4M10S\"}, {\"titleId\": \"CUSA25953_00\", \"name\": \"Let's Cook Together\", \"localizedName\": \"Let's Cook Together\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 19, \"concept\": {\"id\": 10002052, \"titleIds\": [\"CUSA25954_00\", \"CUSA25953_00\"], \"name\": \"Let's Cook Together\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Cook Together\", \"uk-UA\": \"Let's Cook Together\", \"de-DE\": \"Let's Cook Together\", \"en-US\": \"Let's Cook Together\", \"ko-KR\": \"Let's Cook Together\", \"pt-BR\": \"Let's Cook Together\", \"es-ES\": \"Let's Cook Together\", \"ar-AE\": \"Let's Cook Together\", \"no-NO\": \"Let's Cook Together\", \"fr-CA\": \"Let's Cook Together\", \"it-IT\": \"Let's Cook Together\", \"pl-PL\": \"Let's Cook Together\", \"ru-RU\": \"Let's Cook Together\", \"zh-Hans\": \"Let's Cook Together\", \"nl-NL\": \"Let's Cook Together\", \"pt-PT\": \"Let's Cook Together\", \"zh-Hant\": \"Let's Cook Together\", \"sv-SE\": \"Let's Cook Together\", \"da-DK\": \"Let's Cook Together\", \"tr-TR\": \"Let's Cook Together\", \"fr-FR\": \"Let's Cook Together\", \"en-GB\": \"Let's Cook Together\", \"es-419\": \"Let's Cook Together\", \"ja-JP\": \"Let's Cook Together\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-27T06:59:58.430000Z\", \"lastPlayedDateTime\": \"2023-06-25T02:03:08.710000Z\", \"playDuration\": \"PT5H51M12S\"}, {\"titleId\": \"CUSA38091_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:17:36.410000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:18:37.650000Z\", \"playDuration\": \"PT58S\"}, {\"titleId\": \"CUSA38092_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:16:14.430000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:17:34.510000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA42528_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T03:32:10.970000Z\", \"lastPlayedDateTime\": \"2023-06-22T05:04:45.550000Z\", \"playDuration\": \"PT1H31M58S\"}, {\"titleId\": \"CUSA42526_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T00:58:36.860000Z\", \"lastPlayedDateTime\": \"2023-06-22T03:32:06.830000Z\", \"playDuration\": \"PT1H50M3S\"}, {\"titleId\": \"CUSA42525_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:54:53.690000Z\", \"lastPlayedDateTime\": \"2023-06-21T13:35:30.080000Z\", \"playDuration\": \"PT1H40M16S\"}, {\"titleId\": \"CUSA42592_00\", \"name\": \"Balloon Girl\", \"localizedName\": \"Balloon Girl\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007891, \"titleIds\": [\"CUSA42593_00\", \"CUSA42592_00\", \"CUSA42594_00\", \"CUSA42591_00\"], \"name\": \"Balloon Girl\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Balloon Girl\", \"uk-UA\": \"Balloon Girl\", \"de-DE\": \"Balloon Girl\", \"en-US\": \"Balloon Girl\", \"ko-KR\": \"Balloon Girl\", \"pt-BR\": \"Balloon Girl\", \"es-ES\": \"Balloon Girl\", \"ar-AE\": \"Balloon Girl\", \"no-NO\": \"Balloon Girl\", \"fr-CA\": \"Balloon Girl\", \"it-IT\": \"Balloon Girl\", \"pl-PL\": \"Balloon Girl\", \"ru-RU\": \"Balloon Girl\", \"zh-Hans\": \"Balloon Girl\", \"nl-NL\": \"Balloon Girl\", \"pt-PT\": \"Balloon Girl\", \"zh-Hant\": \"Balloon Girl\", \"sv-SE\": \"Balloon Girl\", \"da-DK\": \"Balloon Girl\", \"tr-TR\": \"Balloon Girl\", \"fr-FR\": \"Balloon Girl\", \"en-GB\": \"Balloon Girl\", \"es-419\": \"Balloon Girl\", \"ja-JP\": \"Balloon Girl\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:27:02.140000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:48:03.340000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"PPSA08558_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:08:05.850000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:23:32.170000Z\", \"playDuration\": \"PT15M22S\"}, {\"titleId\": \"PPSA08559_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:51:25.460000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:08:04.080000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"CUSA34667_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:33:21.910000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:49:54.160000Z\", \"playDuration\": \"PT16M29S\"}, {\"titleId\": \"CUSA34668_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:08:07.480000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:33:20.380000Z\", \"playDuration\": \"PT24M19S\"}, {\"titleId\": \"PPSA13396_00\", \"name\": \"Living with Horses: My Horse Farm\", \"localizedName\": \"Living with Horses: My Horse Farm\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007183, \"titleIds\": [\"PPSA13396_00\", \"PPSA13397_00\"], \"name\": \"Living with Horses: My Horse Farm\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hevosel\\u00e4m\\u00e4\\u00e4: Oma hevostilani\", \"uk-UA\": \"\\u0416\\u0438\\u0442\\u0442\\u044f \\u0437 \\u043a\\u0456\\u043d\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u0456\\u043d\\u043d\\u0430 \\u0444\\u0435\\u0440\\u043c\\u0430\", \"de-DE\": \"Mein Reiterhof - Pferde, Turniere, Abenteuer\", \"en-US\": \"Living with Horses: My Horse Farm\", \"pt-BR\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"es-ES\": \"Vida entre caballos: mi granja equina\", \"ar-AE\": \"\\u0627\\u0644\\u0639\\u064a\\u0634 \\u0645\\u0639 \\u0627\\u0644\\u062e\\u064a\\u0648\\u0644: \\u0645\\u0632\\u0631\\u0639\\u0629 \\u062e\\u064a\\u0648\\u0644\\u064a\", \"no-NO\": \"Livet med hester: Min hesteg\\u00e5rd\", \"fr-CA\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"it-IT\": \"Una vita a cavallo: Il mio maneggio\", \"pl-PL\": \"\\u017bycie z ko\\u0144mi: Moja farma koni\", \"ru-RU\": \"\\u0416\\u0438\\u0437\\u043d\\u044c \\u0441 \\u043b\\u043e\\u0448\\u0430\\u0434\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u043e\\u043d\\u043d\\u0430\\u044f \\u0444\\u0435\\u0440\\u043c\\u0430\", \"nl-NL\": \"Leven met paarden: Mijn manege\", \"pt-PT\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"sv-SE\": \"Leva med h\\u00e4star: Min h\\u00e4stg\\u00e5rd\", \"da-DK\": \"Livet med heste: Min hestefarm\", \"tr-TR\": \"Atlarla Ya\\u015famak: At \\u00c7iftli\\u011fim\", \"fr-FR\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"en-GB\": \"Living with Horses: My Horse Farm\", \"es-419\": \"Vida entre caballos: mi granja equina\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:08:12.420000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:41:26.070000Z\", \"playDuration\": \"PT32M19S\"}, {\"titleId\": \"CUSA37885_00\", \"name\": \"Touchdown Pinball\", \"localizedName\": \"Touchdown Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004659, \"titleIds\": [\"CUSA37885_00\", \"CUSA37884_00\", \"PPSA06804_00\", \"PPSA06805_00\", \"PPSA07907_00\"], \"name\": \"Touchdown Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Touchdown Pinball\", \"uk-UA\": \"Touchdown Pinball\", \"de-DE\": \"Touchdown Pinball\", \"en-US\": \"Touchdown Pinball\", \"pt-BR\": \"Touchdown Pinball\", \"es-ES\": \"Touchdown Pinball\", \"ar-AE\": \"Touchdown Pinball\", \"no-NO\": \"Touchdown Pinball\", \"fr-CA\": \"Touchdown Pinball\", \"it-IT\": \"Touchdown Pinball\", \"pl-PL\": \"Touchdown Pinball\", \"ru-RU\": \"Touchdown Pinball\", \"nl-NL\": \"Touchdown Pinball\", \"pt-PT\": \"Touchdown Pinball\", \"sv-SE\": \"Touchdown Pinball\", \"da-DK\": \"Touchdown Pinball\", \"tr-TR\": \"Touchdown Pinball\", \"fr-FR\": \"Touchdown Pinball\", \"en-GB\": \"Touchdown Pinball\", \"es-419\": \"Touchdown Pinball\", \"ja-JP\": \"\\u30bf\\u30c3\\u30c1\\u30c0\\u30a6\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T06:17:35.670000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:07:32.800000Z\", \"playDuration\": \"PT49M29S\"}, {\"titleId\": \"CUSA37883_00\", \"name\": \"Titans Pinball\", \"localizedName\": \"Titans Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004803, \"titleIds\": [\"PPSA07100_00\", \"PPSA11148_00\", \"PPSA07101_00\", \"CUSA37882_00\", \"CUSA37883_00\"], \"name\": \"Titans Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Titans Pinball\", \"uk-UA\": \"Titans Pinball\", \"de-DE\": \"Titans Pinball\", \"en-US\": \"Titans Pinball\", \"pt-BR\": \"Titans Pinball\", \"es-ES\": \"Titans Pinball\", \"ar-AE\": \"Titans Pinball\", \"no-NO\": \"Titans Pinball\", \"fr-CA\": \"Titans Pinball\", \"it-IT\": \"Titans Pinball\", \"pl-PL\": \"Titans Pinball\", \"ru-RU\": \"Titans Pinball\", \"nl-NL\": \"Titans Pinball\", \"pt-PT\": \"Titans Pinball\", \"sv-SE\": \"Titans Pinball\", \"da-DK\": \"Titans Pinball\", \"tr-TR\": \"Titans Pinball\", \"fr-FR\": \"Titans Pinball\", \"en-GB\": \"Titans Pinball\", \"es-419\": \"Titans Pinball\", \"ja-JP\": \"\\u30bf\\u30a4\\u30bf\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T05:37:29.840000Z\", \"lastPlayedDateTime\": \"2023-06-21T06:17:32.900000Z\", \"playDuration\": \"PT21M4S\"}, {\"titleId\": \"CUSA18686_00\", \"name\": \"Doodle God: Evolution\", \"localizedName\": \"Doodle God: Evolution\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 235296, \"titleIds\": [\"CUSA18084_00\", \"CUSA26598_00\", \"CUSA27103_00\", \"CUSA18686_00\"], \"name\": \"Doodle God: Evolution\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Doodle God: Evolution\", \"uk-UA\": \"Doodle God: Evolution\", \"de-DE\": \"Doodle God: Evolution\", \"en-US\": \"Doodle God: Evolution\", \"pt-BR\": \"Doodle God: Evolution\", \"es-ES\": \"Doodle God: Evolution\", \"ar-AE\": \"Doodle God: Evolution\", \"no-NO\": \"Doodle God: Evolution\", \"fr-CA\": \"Doodle God: Evolution\", \"it-IT\": \"Doodle God: Evolution\", \"pl-PL\": \"Doodle God: Evolution\", \"ru-RU\": \"Doodle God: Evolution\", \"nl-NL\": \"Doodle God: Evolution\", \"pt-PT\": \"Doodle God: Evolution\", \"sv-SE\": \"Doodle God: Evolution\", \"da-DK\": \"Doodle God: Evolution\", \"tr-TR\": \"Doodle God: Evolution\", \"fr-FR\": \"Doodle God: Evolution\", \"en-GB\": \"Doodle God: Evolution\", \"es-419\": \"Doodle God: Evolution\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:42:59.130000Z\", \"lastPlayedDateTime\": \"2023-06-21T04:43:25.740000Z\", \"playDuration\": \"PT5H50M9S\"}, {\"titleId\": \"CUSA29604_00\", \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"localizedName\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 6, \"concept\": {\"id\": 10003498, \"titleIds\": [\"CUSA29604_00\"], \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"uk-UA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"de-DE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-US\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-BR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-ES\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ar-AE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"no-NO\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-CA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"it-IT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pl-PL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ru-RU\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"nl-NL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-PT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"sv-SE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"da-DK\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"tr-TR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-FR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-GB\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-419\": \"Neptunia x SENRAN KAGURA: Ninja Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T11:03:14.970000Z\", \"lastPlayedDateTime\": \"2023-06-21T03:03:29.130000Z\", \"playDuration\": \"PT14H18M33S\"}, {\"titleId\": \"PPSA15070_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:57:56.270000Z\", \"lastPlayedDateTime\": \"2023-06-20T20:02:30.840000Z\", \"playDuration\": \"PT4M21S\"}, {\"titleId\": \"PPSA15071_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:55:09.970000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:57:53.980000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"CUSA42067_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:52:20.780000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:55:07.560000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA42069_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:29:56.250000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:52:19.010000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA42527_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T15:27:09.620000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:48:40.430000Z\", \"playDuration\": \"PT2H23M46S\"}, {\"titleId\": \"CUSA31464_00\", \"name\": \"ExitMan Deluxe\", \"localizedName\": \"ExitMan Deluxe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004176, \"titleIds\": [\"CUSA31464_00\", \"CUSA31465_00\", \"CUSA31463_00\", \"CUSA31462_00\"], \"name\": \"ExitMan Deluxe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ExitMan Deluxe\", \"uk-UA\": \"ExitMan Deluxe\", \"de-DE\": \"ExitMan Deluxe\", \"en-US\": \"ExitMan Deluxe\", \"ko-KR\": \"ExitMan Deluxe\", \"pt-BR\": \"ExitMan Deluxe\", \"es-ES\": \"ExitMan Deluxe\", \"ar-AE\": \"ExitMan Deluxe\", \"no-NO\": \"ExitMan Deluxe\", \"fr-CA\": \"ExitMan Deluxe\", \"it-IT\": \"ExitMan Deluxe\", \"pl-PL\": \"ExitMan Deluxe\", \"ru-RU\": \"ExitMan Deluxe\", \"zh-Hans\": \"ExitMan Deluxe\", \"nl-NL\": \"ExitMan Deluxe\", \"pt-PT\": \"ExitMan Deluxe\", \"zh-Hant\": \"ExitMan Deluxe\", \"sv-SE\": \"ExitMan Deluxe\", \"da-DK\": \"ExitMan Deluxe\", \"tr-TR\": \"ExitMan Deluxe\", \"fr-FR\": \"ExitMan Deluxe\", \"en-GB\": \"ExitMan Deluxe\", \"es-419\": \"ExitMan Deluxe\", \"ja-JP\": \"ExitMan Deluxe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T17:01:19.220000Z\", \"lastPlayedDateTime\": \"2023-06-20T18:56:21.880000Z\", \"playDuration\": \"PT1H53M47S\"}, {\"titleId\": \"CUSA33496_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:31:54.680000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:25:58.210000Z\", \"playDuration\": \"PT1H33M58S\"}, {\"titleId\": \"CUSA33495_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:10:24.360000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:19:49.710000Z\", \"playDuration\": \"PT1H49M56S\"}, {\"titleId\": \"CUSA38002_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:25:32.270000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:28:46.700000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA43835_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:20:33.170000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:25:30.100000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"CUSA42211_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:18:03.890000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:19:08.810000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA42212_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:16:32.470000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:18:02.510000Z\", \"playDuration\": \"PT1M23S\"}, {\"titleId\": \"CUSA43806_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:06:53.640000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:14:53.200000Z\", \"playDuration\": \"PT7M40S\"}, {\"titleId\": \"CUSA43737_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:03:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:06:50.510000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35901_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:56:43.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:02:15.670000Z\", \"playDuration\": \"PT3M46S\"}, {\"titleId\": \"CUSA35900_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:51:28.810000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:56:41.330000Z\", \"playDuration\": \"PT4M55S\"}, {\"titleId\": \"CUSA35902_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:47:41.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:51:20.210000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"CUSA35899_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:35:47.380000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:46:56.550000Z\", \"playDuration\": \"PT10M44S\"}, {\"titleId\": \"PPSA12391_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:22:37.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:35:24.690000Z\", \"playDuration\": \"PT11M6S\"}, {\"titleId\": \"PPSA12392_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:13:39.510000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:22:33.230000Z\", \"playDuration\": \"PT8M23S\"}, {\"titleId\": \"PPSA12393_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:03:57.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:13:37.440000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"PPSA12390_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T06:42:45.820000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:03:55.910000Z\", \"playDuration\": \"PT18M56S\"}, {\"titleId\": \"PPSA08305_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 23, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T01:05:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:37:36.350000Z\", \"playDuration\": \"PT12H22M36S\"}, {\"titleId\": \"PPSA08304_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 22, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T22:18:51.680000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:06:06.020000Z\", \"playDuration\": \"PT12H38M59S\"}, {\"titleId\": \"CUSA34367_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T12:12:18.050000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:43:30.960000Z\", \"playDuration\": \"PT16H18M49S\"}, {\"titleId\": \"CUSA37712_00\", \"name\": \"Deep Ones\", \"localizedName\": \"Deep Ones\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 231072, \"titleIds\": [\"CUSA18978_00\", \"PCSB01212_00\", \"CUSA14737_00\", \"CUSA10838_00\", \"CUSA14703_00\", \"CUSA10821_00\", \"CUSA37712_00\"], \"name\": \"Deep Ones\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Deep Ones\", \"uk-UA\": \"Deep Ones\", \"de-DE\": \"Deep Ones\", \"en-US\": \"Deep Ones\", \"ko-KR\": \"Deep Ones\", \"pt-BR\": \"Deep Ones\", \"es-ES\": \"Deep Ones\", \"ar-AE\": \"Deep Ones\", \"no-NO\": \"Deep Ones\", \"fr-CA\": \"Deep Ones\", \"it-IT\": \"Deep Ones\", \"pl-PL\": \"Deep Ones\", \"ru-RU\": \"Deep Ones\", \"zh-Hans\": \"Deep Ones\", \"nl-NL\": \"Deep Ones\", \"pt-PT\": \"Deep Ones\", \"zh-Hant\": \"Deep Ones\", \"sv-SE\": \"Deep Ones\", \"da-DK\": \"Deep Ones\", \"tr-TR\": \"Deep Ones\", \"fr-FR\": \"Deep Ones\", \"en-GB\": \"Deep Ones\", \"es-419\": \"Deep Ones\", \"ja-JP\": \"Deep Ones\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T06:24:03.750000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:11:35.620000Z\", \"playDuration\": \"PT2H33M50S\"}, {\"titleId\": \"CUSA25037_00\", \"name\": \"Persian Nights 2: Moonlight Veil\", \"localizedName\": \"Persian Nights 2: Moonlight Veil\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001680, \"titleIds\": [\"CUSA25038_00\", \"CUSA25037_00\"], \"name\": \"Persian Nights 2: Moonlight Veil\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Persian Nights 2: Moonlight Veil\", \"uk-UA\": \"Persian Nights 2: Moonlight Veil\", \"de-DE\": \"Persian Nights 2: Moonlight Veil\", \"en-US\": \"Persian Nights 2: Moonlight Veil\", \"pt-BR\": \"Persian Nights 2: Moonlight Veil\", \"es-ES\": \"Persian Nights 2: Moonlight Veil\", \"ar-AE\": \"Persian Nights 2: Moonlight Veil\", \"no-NO\": \"Persian Nights 2: Moonlight Veil\", \"fr-CA\": \"Persian Nights 2: Moonlight Veil\", \"it-IT\": \"Persian Nights 2: Moonlight Veil\", \"pl-PL\": \"Persian Nights 2: Moonlight Veil\", \"ru-RU\": \"Persian Nights 2: Moonlight Veil\", \"nl-NL\": \"Persian Nights 2: Moonlight Veil\", \"pt-PT\": \"Persian Nights 2: Moonlight Veil\", \"sv-SE\": \"Persian Nights 2: Moonlight Veil\", \"da-DK\": \"Persian Nights 2: Moonlight Veil\", \"tr-TR\": \"Persian Nights 2: Moonlight Veil\", \"fr-FR\": \"Persian Nights 2: Moonlight Veil\", \"en-GB\": \"Persian Nights 2: Moonlight Veil\", \"es-419\": \"Persian Nights 2: Moonlight Veil\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T02:14:17.830000Z\", \"lastPlayedDateTime\": \"2023-06-18T06:23:00.120000Z\", \"playDuration\": \"PT2H21M46S\"}, {\"titleId\": \"CUSA30539_00\", \"name\": \"Inspector Waffles\", \"localizedName\": \"Inspector Waffles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003854, \"titleIds\": [\"CUSA30540_00\", \"CUSA30539_00\"], \"name\": \"Inspector Waffles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inspector Waffles\", \"uk-UA\": \"Inspector Waffles\", \"de-DE\": \"Inspector Waffles\", \"en-US\": \"Inspector Waffles\", \"pt-BR\": \"Inspector Waffles\", \"es-ES\": \"Inspector Waffles\", \"ar-AE\": \"Inspector Waffles\", \"no-NO\": \"Inspector Waffles\", \"fr-CA\": \"Inspector Waffles\", \"it-IT\": \"Inspector Waffles\", \"pl-PL\": \"Inspector Waffles\", \"ru-RU\": \"Inspector Waffles\", \"nl-NL\": \"Inspector Waffles\", \"pt-PT\": \"Inspector Waffles\", \"sv-SE\": \"Inspector Waffles\", \"da-DK\": \"Inspector Waffles\", \"tr-TR\": \"Inspector Waffles\", \"fr-FR\": \"Inspector Waffles\", \"en-GB\": \"Inspector Waffles\", \"es-419\": \"Inspector Waffles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T11:58:51.560000Z\", \"lastPlayedDateTime\": \"2023-06-17T14:09:44.990000Z\", \"playDuration\": \"PT2H50S\"}, {\"titleId\": \"PPSA12406_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T08:48:37.410000Z\", \"lastPlayedDateTime\": \"2023-06-17T11:51:06.970000Z\", \"playDuration\": \"PT49M55S\"}, {\"titleId\": \"CUSA39375_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T07:41:08.680000Z\", \"lastPlayedDateTime\": \"2023-06-17T08:31:37.270000Z\", \"playDuration\": \"PT49M49S\"}, {\"titleId\": \"CUSA18793_00\", \"name\": \"MOZART'S REQUIEM\", \"localizedName\": \"MOZART'S REQUIEM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 5, \"concept\": {\"id\": 10000493, \"titleIds\": [\"CUSA28337_00\", \"CUSA18793_00\"], \"name\": \"MOZART'S REQUIEM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MOZART REQUIEM\", \"uk-UA\": \"MOZART REQUIEM\", \"de-DE\": \"MOZART REQUIEM\", \"en-US\": \"MOZART'S REQUIEM\", \"ko-KR\": \"MOZART REQUIEM\", \"pt-BR\": \"MOZART REQUIEM\", \"es-ES\": \"MOZART REQUIEM\", \"ar-AE\": \"MOZART REQUIEM\", \"no-NO\": \"MOZART REQUIEM\", \"fr-CA\": \"MOZART REQUIEM\", \"it-IT\": \"MOZART REQUIEM\", \"pl-PL\": \"MOZART REQUIEM\", \"ru-RU\": \"MOZART REQUIEM\", \"nl-NL\": \"MOZART REQUIEM\", \"pt-PT\": \"MOZART REQUIEM\", \"sv-SE\": \"MOZART REQUIEM\", \"da-DK\": \"MOZART REQUIEM\", \"tr-TR\": \"MOZART REQUIEM\", \"fr-FR\": \"MOZART REQUIEM\", \"en-GB\": \"MOZART'S REQUIEM\", \"es-419\": \"MOZART REQUIEM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T09:07:10.390000Z\", \"lastPlayedDateTime\": \"2023-06-17T07:22:51.420000Z\", \"playDuration\": \"PT1H18M49S\"}, {\"titleId\": \"CUSA32560_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T15:44:05.860000Z\", \"lastPlayedDateTime\": \"2023-06-15T17:12:58.820000Z\", \"playDuration\": \"PT1H26M26S\"}, {\"titleId\": \"CUSA32558_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:29:22.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T15:33:11.300000Z\", \"playDuration\": \"PT1H51M13S\"}, {\"titleId\": \"PPSA11423_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqL